jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=87aed21c05b1208744da839f74567a41acaef063
commit 87aed21c05b1208744da839f74567a41acaef063 Author: Jean-Philippe Andre <jp.an...@samsung.com> Date: Fri Feb 27 14:11:59 2015 +0900 Evas masking: Remove commented-out code I shouldn't have pushed this :) --- src/modules/evas/engines/gl_common/evas_gl_context.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/modules/evas/engines/gl_common/evas_gl_context.c b/src/modules/evas/engines/gl_common/evas_gl_context.c index cb931de..771f8b8 100644 --- a/src/modules/evas/engines/gl_common/evas_gl_context.c +++ b/src/modules/evas/engines/gl_common/evas_gl_context.c @@ -1262,12 +1262,6 @@ evas_gl_common_context_target_surface_set(Evas_Engine_GL_Context *gc, PUSH_TEXM(pn, tmx2, tmy2); \ PUSH_TEXM(pn, tmx1, tmy2); \ } while(0) -/* was: - tmx1 = (mtex->x + mx) / (double)mtex->pt->w; \ - tmy1 = (mtex->y + my) / (double)mtex->pt->h; \ - tmx2 = (mtex->x + mx + mw) / (double)mtex->pt->w; \ - tmy2 = (mtex->y + my + mh) / (double)mtex->pt->h; \ - */ #define PIPE_GROW(gc, pn, inc) \ int nv = gc->pipe[pn].array.num * 3; (void) nv; \ --