declare the variables at the beginning of the block

SVN revision: 64516
This commit is contained in:
Vincent Torri 2011-10-30 05:02:05 +00:00
parent 80b018b790
commit 346eba9259
1 changed files with 3 additions and 1 deletions

View File

@ -3192,6 +3192,9 @@ eng_gl_make_current(void *data __UNUSED__, void *surface, void *context)
Render_Engine_GL_Surface *sfc;
Render_Engine_GL_Context *ctx;
int ret = 0;
#if defined (GLES_VARIETY_S3C6410) || defined (GLES_VARIETY_SGX)
Render_Engine_GL_Resource *rsc;
#endif
re = (Render_Engine *)data;
sfc = (Render_Engine_GL_Surface*)surface;
@ -3220,7 +3223,6 @@ eng_gl_make_current(void *data __UNUSED__, void *surface, void *context)
// Do a make current only if it's not already current
#if defined (GLES_VARIETY_S3C6410) || defined (GLES_VARIETY_SGX)
Render_Engine_GL_Resource *rsc;
if ((rsc = eina_tls_get(resource_key)) == EINA_FALSE) return 0;
if ((eglGetCurrentContext() != ctx->context) ||