From: Carsten Haitzler Date: Sat, 8 Oct 2011 04:58:57 +0000 (+0000) Subject: Commit Neil's patch reported here: X-Git-Tag: submit/devel/efl/20131022.203902~7892 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6fd17b839d980958d4488e28e7b775a713fb2341;p=platform%2Fupstream%2Fefl.git Commit Neil's patch reported here: http://trac.enlightenment.org/e/ticket/880 SVN revision: 63920 --- diff --git a/legacy/evas/src/modules/engines/gl_common/evas_gl_context.c b/legacy/evas/src/modules/engines/gl_common/evas_gl_context.c index 5bd3c44..2e76588 100644 --- a/legacy/evas/src/modules/engines/gl_common/evas_gl_context.c +++ b/legacy/evas/src/modules/engines/gl_common/evas_gl_context.c @@ -2126,18 +2126,18 @@ evas_gl_common_context_image_map_push(Evas_Engine_GL_Context *gc, } } - x = w = (p[points[0]].x >> FP); - y = h = (p[points[0]].y >> FP); + x = w = (p[0].x >> FP); + y = h = (p[0].y >> FP); for (i = 0; i < 4; i++) { tx[i] = ((double)(tex->x) + (((double)p[i].u) / FP1)) / (double)tex->pt->w; ty[i] = ((double)(tex->y) + (((double)p[i].v) / FP1)) / (double)tex->pt->h; - px = (p[points[i]].x >> FP); + px = (p[i].x >> FP); if (px < x) x = px; else if (px > w) w = px; - py = (p[points[i]].y >> FP); + py = (p[i].y >> FP); if (py < y) y = py; else if (py > h) h = py; if (utexture)