GNOME Bugzilla – Bug 696630
Do not use ClutterActorBox
Last modified: 2013-04-25 15:46:55 UTC
the ActorBox type is a pretty bad one for denominating rectangular regions; Clutter provides ClutterRect, as well as ClutterPoint and ClutterSize, which has a better representation of a rectangle. ClutterActorBox is also slated for removal in 2.0. ClutterGstCrop uses ClutterActorBox in the input-region and output-region properties; I'll try and cook up a patch soon.
the tracker for removing ClutterActorBox in 2.0 is bug 682783.
Fixed, added ClutterGstBox from ClutterActorBox. Maybe not the way you wanted it to be, but after giving a try to ClutterPoint + ClutterRect it turns out is easier to use a pair of x,y coordinates (probably because it ends up using Cogl's API).