raster pushed a commit to branch master.

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

commit 243e8a678b0bfc7aa819210aad1ba40b32803d1c
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
Date:   Sun Feb 12 15:48:51 2017 +0900

    evas gl common - make render op explicitly signed as we set it to -1
    
    this just is cleaner and now also matches types for render_op in gl
    common context.
---
 src/modules/evas/engines/gl_common/evas_gl_common.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/modules/evas/engines/gl_common/evas_gl_common.h 
b/src/modules/evas/engines/gl_common/evas_gl_common.h
index 67d10cd..5a10fd5 100644
--- a/src/modules/evas/engines/gl_common/evas_gl_common.h
+++ b/src/modules/evas/engines/gl_common/evas_gl_common.h
@@ -263,7 +263,7 @@ struct _Evas_Engine_GL_Context
          GLuint          cur_tex, cur_texu, cur_texv, cur_texa, cur_texm;
          int             tex_target;
          int             cx, cy, cw, ch;
-         unsigned char   render_op;
+         signed char     render_op;
          Eina_Bool       smooth     : 2;
          Eina_Bool       blend      : 2;
          Eina_Bool       clip       : 2;
@@ -295,7 +295,7 @@ struct _Evas_Engine_GL_Context
          GLuint           cur_tex, cur_texu, cur_texv, cur_texa, cur_texm;
          int              tex_target;
          int              cx, cy, cw, ch;
-         char             render_op;
+         signed char      render_op;
          Eina_Bool        smooth      : 2;
          Eina_Bool        blend       : 2;
          Eina_Bool        mask_smooth : 2;

-- 


Reply via email to