Updated doc example to use ClutterPoint.

This commit is contained in:
Erick Pérez Castellanos 2013-04-13 13:02:57 -04:00
parent b1fa6434e1
commit 29271a2d73

View File

@ -16,7 +16,7 @@ static void
_convert_clutter_path_node_to_cogl_path (const ClutterPathNode *node,
gpointer data)
{
ClutterKnot knot;
ClutterPoint knot;
g_return_if_fail (node != NULL);
@ -25,12 +25,12 @@ _convert_clutter_path_node_to_cogl_path (const ClutterPathNode *node,
case CLUTTER_PATH_MOVE_TO:
knot = node->points[0];
cogl_path_move_to (knot.x, knot.y);
g_debug ("move to %d, %d", knot.x, knot.y);
g_debug ("move to %f, %f", knot.x, knot.y);
break;
case CLUTTER_PATH_LINE_TO:
knot = node->points[0];
cogl_path_line_to (knot.x, knot.y);
g_debug ("line to %d, %d", knot.x, knot.y);
g_debug ("line to %f, %f", knot.x, knot.y);
break;
default:
break;