2008-01-12 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-effect.c (clutter_effect_rotate): Make the rotate effect work on the passed axis, instead of hardcoding the X axis. (#700, Neil Roberts)
This commit is contained in:
parent
063386c1e2
commit
3b0c46dd28
@ -1,3 +1,9 @@
|
|||||||
|
2008-01-12 Emmanuele Bassi <ebassi@openedhand.com>
|
||||||
|
|
||||||
|
* clutter/clutter-effect.c (clutter_effect_rotate): Make the
|
||||||
|
rotate effect work on the passed axis, instead of hardcoding
|
||||||
|
the X axis. (#700, Neil Roberts)
|
||||||
|
|
||||||
2008-01-10 Øyvind Kolås <pippin@gimp.org>
|
2008-01-10 Øyvind Kolås <pippin@gimp.org>
|
||||||
|
|
||||||
Added COGLhandleARB since the underlying type on OSX is void*,
|
Added COGLhandleARB since the underlying type on OSX is void*,
|
||||||
|
@ -821,7 +821,7 @@ clutter_effect_rotate (ClutterEffectTemplate *template_,
|
|||||||
angle_start = clutter_actor_get_rotation (actor, axis, NULL, NULL, NULL);
|
angle_start = clutter_actor_get_rotation (actor, axis, NULL, NULL, NULL);
|
||||||
|
|
||||||
c->behave = clutter_behaviour_rotate_new (c->alpha,
|
c->behave = clutter_behaviour_rotate_new (c->alpha,
|
||||||
CLUTTER_X_AXIS,
|
axis,
|
||||||
direction,
|
direction,
|
||||||
angle_start,
|
angle_start,
|
||||||
angle_end);
|
angle_end);
|
||||||
|
Loading…
Reference in New Issue
Block a user