mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 08:30:42 -05:00
Fixed incorrect order of modelview matrix stacking while calculating actor vertices.
This commit is contained in:
parent
459e8a0a9d
commit
2cc4a23820
@ -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>
|
2007-07-30 Matthew Allum <mallum@openedhand.com>
|
||||||
|
|
||||||
* clutter/clutter-backend.h:
|
* clutter/clutter-backend.h:
|
||||||
|
@ -635,12 +635,12 @@ _clutter_actor_apply_modelview_transform_recursive (ClutterActor * self)
|
|||||||
{
|
{
|
||||||
ClutterActor * parent;
|
ClutterActor * parent;
|
||||||
|
|
||||||
_clutter_actor_apply_modelview_transform (self);
|
|
||||||
|
|
||||||
parent = clutter_actor_get_parent (self);
|
parent = clutter_actor_get_parent (self);
|
||||||
|
|
||||||
if (parent)
|
if (parent)
|
||||||
_clutter_actor_apply_modelview_transform_recursive (parent);
|
_clutter_actor_apply_modelview_transform_recursive (parent);
|
||||||
|
|
||||||
|
_clutter_actor_apply_modelview_transform (self);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user