elementary/transit - fixed wipe effect flickering.

evas_map_point_coord APIs have the int values but evas_map_point_image_uv_set have the double parameters on the other hand.
This inconsistency causes the inexact result(flickering). 

It's not good APIs for users.



SVN revision: 71979
This commit is contained in:
ChunEon Park 2012-06-12 06:39:25 +00:00
parent 9425a89305
commit a9b4b5cd4a
1 changed files with 4 additions and 4 deletions

View File

@ -1541,9 +1541,9 @@ struct _Elm_Transit_Effect_Wipe
};
static void
_elm_fx_wipe_hide(Evas_Map * map, Elm_Transit_Effect_Wipe_Dir dir, float x, float y, float w, float h, float progress)
_elm_fx_wipe_hide(Evas_Map * map, Elm_Transit_Effect_Wipe_Dir dir, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, float progress)
{
float w2, h2;
Evas_Coord w2, h2;
switch (dir)
{
@ -1602,9 +1602,9 @@ _elm_fx_wipe_hide(Evas_Map * map, Elm_Transit_Effect_Wipe_Dir dir, float x, floa
}
static void
_elm_fx_wipe_show(Evas_Map *map, Elm_Transit_Effect_Wipe_Dir dir, float x, float y, float w, float h, float progress)
_elm_fx_wipe_show(Evas_Map *map, Elm_Transit_Effect_Wipe_Dir dir, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, float progress)
{
float w2, h2;
Evas_Coord w2, h2;
switch (dir)
{