From a517242087b6ed641cc80e969f06e79196a5212e Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Fri, 1 Jul 2011 14:30:59 +0100 Subject: gles: Fix the name of the GLeglImageOES type The function declarations for the GL_OES_EGL_image extension were using the wrong name for the GLeglImageOES type so it was getting build errors when compiling for GLES. --- cogl/driver/gles/cogl-feature-functions-gles.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogl/driver/gles/cogl-feature-functions-gles.h b/cogl/driver/gles/cogl-feature-functions-gles.h index b14c935a..8282e1b9 100644 --- a/cogl/driver/gles/cogl-feature-functions-gles.h +++ b/cogl/driver/gles/cogl-feature-functions-gles.h @@ -146,8 +146,8 @@ COGL_FEATURE_BEGIN (EGL_image, 255, 255, COGL_PRIVATE_FEATURE_TEXTURE_2D_FROM_EGL_IMAGE) COGL_FEATURE_FUNCTION (void, glEGLImageTargetTexture2D, (GLenum target, - eglImageOES image)) + GLeglImageOES image)) COGL_FEATURE_FUNCTION (void, glEGLImageTargetRenderbufferStorage, (GLenum target, - eglImageOES image)) + GLeglImageOES image)) COGL_FEATURE_END () -- cgit v1.2.1