I just started playing around with clutter a bit, and I got a question in regards to setting properties on a ClutterActor.
I want to set the pivot-point property, after searching though the reference, the function which seems the best fit is clutter_container_child_set_property (I couldn't find anything with operated directly on the actor), so I'm trying
ClutterPoint point = {128,64};
clutter_container_child_set_property(CLUTTER_CONTAINER(stage), box, "pivot-point", point);
But I get an error, it expects the point to be of the type GValue , how do I change the clutter point to a gvalue?