summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Roberts <neil@linux.intel.com>2011-07-01 14:30:59 +0100
committerNeil Roberts <neil@linux.intel.com>2011-07-01 14:30:59 +0100
commita517242087b6ed641cc80e969f06e79196a5212e (patch)
tree20582c1d02457515e7ae9a98edbe833c83b36a74
parentf0366907d3c878e1b0e172cb9a91f82e0cd35323 (diff)
downloadcogl-a517242087b6ed641cc80e969f06e79196a5212e.tar.gz
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.
-rw-r--r--cogl/driver/gles/cogl-feature-functions-gles.h4
1 files 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 ()