and make values int so we can have "-1" :)

SVN revision: 52934
This commit is contained in:
Carsten Haitzler 2010-09-30 23:23:51 +00:00
parent 5938bb97f7
commit 0e560f9db2
1 changed files with 6 additions and 6 deletions

View File

@ -230,9 +230,9 @@ struct _Evas_GL_Context
GLuint cur_tex, cur_texu, cur_texv;
int render_op;
int cx, cy, cw, ch;
Eina_Bool smooth : 1;
Eina_Bool blend : 1;
Eina_Bool clip : 1;
int smooth;
int blend;
int clip;
} current;
} state;
@ -251,9 +251,9 @@ struct _Evas_GL_Context
GLuint cur_tex, cur_texu, cur_texv;
int render_op;
int cx, cy, cw, ch;
Eina_Bool smooth : 1;
Eina_Bool blend : 1;
Eina_Bool clip : 1;
int smooth;
int blend;
int clip;
} shader;
struct {
int num, alloc;