evas gl: Fix invalid argument

GCC didn't warn where it should have :(
Luckily the previous code worked just as well as the value
of EINA_TRUE and EVAS_GL_GLES_1_X are the same (1).
This commit is contained in:
Jean-Philippe Andre 2016-06-20 21:08:58 +09:00
parent cb523121be
commit 4ca91c4881
1 changed files with 2 additions and 8 deletions

View File

@ -2608,12 +2608,6 @@ evgl_make_current(void *eng_data, EVGL_Surface *sfc, EVGL_Context *ctx)
}
else
{
Eina_Bool use_extension = EINA_FALSE;
#ifdef GL_GLES
if ((ctx->version == EVAS_GL_GLES_1_X) && (gles1_funcs))
use_extension = EINA_TRUE;
#endif
// Direct Rendering
if (_evgl_direct_renderable(rsc, sfc))
{
@ -2621,7 +2615,7 @@ evgl_make_current(void *eng_data, EVGL_Surface *sfc, EVGL_Context *ctx)
// Create FBO if it hasn't been created
if (!ctx->surface_fbo)
_framebuffer_create(&ctx->surface_fbo, use_extension);
_framebuffer_create(&ctx->surface_fbo, ctx->version);
if (ctx->version == EVAS_GL_GLES_3_X)
{
@ -2728,7 +2722,7 @@ evgl_make_current(void *eng_data, EVGL_Surface *sfc, EVGL_Context *ctx)
// Create FBO if it hasn't been created
if (!ctx->surface_fbo)
_framebuffer_create(&ctx->surface_fbo, use_extension);
_framebuffer_create(&ctx->surface_fbo, ctx->version);
// Attach fbo and the buffers
if ((rsc->current_ctx != ctx) || (ctx->current_sfc != sfc) || (rsc->direct.rendered))