From: Carsten Haitzler (Rasterman) Date: Sun, 12 Feb 2017 06:48:51 +0000 (+0900) Subject: evas gl common - make render op explicitly signed as we set it to -1 X-Git-Tag: upstream/1.20.0~2046 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=243e8a678b0bfc7aa819210aad1ba40b32803d1c;p=platform%2Fupstream%2Fefl.git 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. --- 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;