evas/evas_object_image.c - reverted to previous

Sorry. Need to look more because of the pageflip. 



SVN revision: 61579
This commit is contained in:
ChunEon Park 2011-07-22 06:08:04 +00:00
parent e9ca4aa10e
commit 614288feb3
1 changed files with 2 additions and 2 deletions

View File

@ -2657,8 +2657,8 @@ evas_object_image_render(Evas_Object *obj, void *output, void *context, void *su
pt->fx = p->px;
pt->fy = p->py;
pt->fz = p->z;
pt->u = ((p->u / obj->cur.geometry.w) * imagew) * FP1;
pt->v = ((p->v / obj->cur.geometry.h) * imageh) * FP1;
pt->u = ((p->u * imagew) / uvw) * FP1;
pt->v = ((p->v * imageh) / uvh) * FP1;
if (pt->u < 0) pt->u = 0;
else if (pt->u > (imagew * FP1)) pt->u = (imagew * FP1);
if (pt->v < 0) pt->v = 0;