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.
This commit is contained in:
Carsten Haitzler 2017-02-12 15:48:51 +09:00
parent d04cd6af10
commit 243e8a678b
1 changed files with 2 additions and 2 deletions

View File

@ -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;