jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=c927f6e4eafbc1eedec4cd512aa16effe4240299

commit c927f6e4eafbc1eedec4cd512aa16effe4240299
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Thu Oct 15 20:09:11 2015 +0900

    Evas: Fix image orientation with GL engine
    
    Fixes T2738
    
    Not sure what to do if yinvert is true. How to handle image
    orientation then? Flip vertically on top of the current orientation?
---
 src/modules/evas/engines/gl_common/evas_gl_context.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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 bb0a754..17becda 100644
--- a/src/modules/evas/engines/gl_common/evas_gl_context.c
+++ b/src/modules/evas/engines/gl_common/evas_gl_context.c
@@ -2192,8 +2192,9 @@ evas_gl_common_context_image_push(Evas_Engine_GL_Context 
*gc,
           yinvert = tex->im->native.yinvert;
      }
 
-   if ((tex->im) && (tex->im->native.data) && (!yinvert))
+   if ((tex->im) && (!yinvert))
      {
+        // FIXME: What if yinvert is true? How to test that?
         switch (tex->im->orient)
           {
            case EVAS_IMAGE_ORIENT_NONE:

-- 


Reply via email to