From: Neil Roberts Date: Wed, 14 Jul 2010 16:49:16 +0000 (+0100) Subject: gles/cogl-texture-driver.c: Fix the include for cogl-material-private X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=54b2e1781ee9ed4bd195ac1e91c3cd35e952de93;p=profile%2Fivi%2Fclutter.git gles/cogl-texture-driver.c: Fix the include for cogl-material-private 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. --- diff --git a/clutter/cogl/cogl/driver/gles/cogl-texture-driver.c b/clutter/cogl/cogl/driver/gles/cogl-texture-driver.c index e8ac09a..1c9a8f3 100644 --- a/clutter/cogl/cogl/driver/gles/cogl-texture-driver.c +++ b/clutter/cogl/cogl/driver/gles/cogl-texture-driver.c @@ -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"