1
0
Fork 0

Fixed incorrect order of modelview matrix stacking while calculating actor vertices.

This commit is contained in:
Tomas Frydrych 2007-07-30 07:27:14 +00:00
parent 459e8a0a9d
commit 2cc4a23820
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2007-07-30 Tomas Frydrych <tf@openedhand.com>
* clutter/clutter-actor.c:
Fixed incorrect order of modelview matrix stack in calculating
actor vertices.
2007-07-30 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-backend.h:

View file

@ -635,12 +635,12 @@ _clutter_actor_apply_modelview_transform_recursive (ClutterActor * self)
{
ClutterActor * parent;
_clutter_actor_apply_modelview_transform (self);
parent = clutter_actor_get_parent (self);
if (parent)
_clutter_actor_apply_modelview_transform_recursive (parent);
_clutter_actor_apply_modelview_transform (self);
}
/**