gles/cogl-texture-driver.c: Fix the include for cogl-material-private
authorNeil Roberts <neil@linux.intel.com>
Wed, 14 Jul 2010 16:49:16 +0000 (17:49 +0100)
committerNeil Roberts <neil@linux.intel.com>
Wed, 14 Jul 2010 16:49:16 +0000 (17:49 +0100)
In ddb9016be4 the GL texture driver backend was changed to include
cogl-material-opengl-private.h instead of cogl-material-private.h.
However the gles texture backend was missed from this so it was giving
a compiler warning about using an undeclared function.

clutter/cogl/cogl/driver/gles/cogl-texture-driver.c

index e8ac09a..1c9a8f3 100644 (file)
@@ -37,7 +37,7 @@
 #include "cogl-bitmap-private.h"
 #include "cogl-texture-private.h"
 #include "cogl-material.h"
-#include "cogl-material-private.h"
+#include "cogl-material-opengl-private.h"
 #include "cogl-context.h"
 #include "cogl-handle.h"
 #include "cogl-primitives.h"