cogl: Fix unused variable warning with GLES2
authorDamien Lespiau <damien.lespiau@intel.com>
Tue, 30 Nov 2010 16:03:26 +0000 (16:03 +0000)
committerDamien Lespiau <damien.lespiau@intel.com>
Tue, 30 Nov 2010 16:03:26 +0000 (16:03 +0000)
This shader variable is only used with big GL.

clutter/cogl/cogl/cogl-shader.c

index 668b6ad..15f926d 100644 (file)
@@ -164,7 +164,9 @@ cogl_shader_source (CoglHandle   handle,
 void
 cogl_shader_compile (CoglHandle handle)
 {
+#ifdef HAVE_COGL_GL
   CoglShader *shader = handle;
+#endif
 
   if (!cogl_is_shader (handle))
     return;