1
0
Fork 0

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.
This commit is contained in:
Neil Roberts 2011-07-01 14:30:59 +01:00
parent f0366907d3
commit a517242087

View file

@ -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 ()