removed unnecessary CFX_MUL from clutter_actor_get_abs_position

This commit is contained in:
Tomas Frydrych 2007-05-15 15:41:30 +00:00
parent 92754aaeee
commit aab511d319
2 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2007-05-15 Tomas Frydrych <tf@openedhand.com>
* clutter/clutter-actor.c:
(clutter_actor_get_abs_position):
Removed unnecessary CFX_MUL().
2007-05-15 Tomas Frydrych <tf@openedhand.com> 2007-05-15 Tomas Frydrych <tf@openedhand.com>
* clutter/clutter-behaviour-ellipse.h: * clutter/clutter-behaviour-ellipse.h:

View File

@ -1090,7 +1090,7 @@ clutter_actor_get_abs_position (ClutterActor *self,
{ {
ClutterActorBox box; ClutterActorBox box;
ClutterActor *parent; ClutterActor *parent;
gint px = 0, py = 0; gint px = 0, py = 0;
g_return_if_fail (CLUTTER_IS_ACTOR (self)); g_return_if_fail (CLUTTER_IS_ACTOR (self));
@ -1111,10 +1111,8 @@ clutter_actor_get_abs_position (ClutterActor *self,
if (parent_scale_x != CFX_ONE || if (parent_scale_x != CFX_ONE ||
parent_scale_y != CFX_ONE) parent_scale_y != CFX_ONE)
{ {
fx = CLUTTER_FIXED_MUL (CLUTTER_INT_TO_FIXED (box.x1), fx = box.x1 * parent_scale_x;
parent_scale_x); fy = box.y1 * parent_scale_y;
fy = CLUTTER_FIXED_MUL (CLUTTER_INT_TO_FIXED (box.y1),
parent_scale_y);
box.x1 = CLUTTER_FIXED_INT (fx); box.x1 = CLUTTER_FIXED_INT (fx);
box.y1 = CLUTTER_FIXED_INT (fy); box.y1 = CLUTTER_FIXED_INT (fy);