tasn pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=9183ba954671d21c0ff80451c138c8200a3b4e86

commit 9183ba954671d21c0ff80451c138c8200a3b4e86
Author: Tom Hacohen <t...@stosb.com>
Date:   Tue Jul 7 13:28:53 2015 +0100

    Evas gl core: Move variables to the correct ifdef branch.
    
    These variables were not really used in the #else branch of the ifdef.
    This moves them to the correct place removing the unused variables issues.
---
 src/modules/evas/engines/gl_common/evas_gl_core.c | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/src/modules/evas/engines/gl_common/evas_gl_core.c 
b/src/modules/evas/engines/gl_common/evas_gl_core.c
index 354a266..7ebee74 100644
--- a/src/modules/evas/engines/gl_common/evas_gl_core.c
+++ b/src/modules/evas/engines/gl_common/evas_gl_core.c
@@ -860,10 +860,6 @@ _surface_cap_init(void *eng_data)
 static int
 _context_ext_check(EVGL_Context *ctx)
 {
-   int fbo_supported = 0;
-   int egl_image_supported = 0;
-   int texture_image_supported = 0;
-
    if (!ctx)
       return 0;
 
@@ -871,6 +867,10 @@ _context_ext_check(EVGL_Context *ctx)
       return 1;
 
 #ifdef GL_GLES
+   int fbo_supported = 0;
+   int egl_image_supported = 0;
+   int texture_image_supported = 0;
+
    switch (ctx->version)
      {
       case EVAS_GL_GLES_1_X:
@@ -895,10 +895,6 @@ _context_ext_check(EVGL_Context *ctx)
         else
           ctx->pixmap_image_supported = 1;
      }
-#else
-   fbo_supported = 1;
-   egl_image_supported = 0;
-   texture_image_supported = 0;
 #endif
 
    ctx->extension_checked = 1;

-- 


Reply via email to