From 0ff02d18d2741adbb79d479a34325f0d63a05c26 Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Wed, 5 May 2010 12:05:15 +0100 Subject: [PATCH] gles: Fix the functions names for the GL_OES_framebuffer_object ext In 91cde78a7 I accidentally changed the function names that get looked up for the framebuffer extension under GLES so that they didn't have any suffix. The spec for extension specifies that they should have the OES suffix. --- clutter/cogl/cogl/driver/gles/cogl-feature-functions.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/clutter/cogl/cogl/driver/gles/cogl-feature-functions.h b/clutter/cogl/cogl/driver/gles/cogl-feature-functions.h index 3de659c..1feeda2 100644 --- a/clutter/cogl/cogl/driver/gles/cogl-feature-functions.h +++ b/clutter/cogl/cogl/driver/gles/cogl-feature-functions.h @@ -25,10 +25,7 @@ these macros */ COGL_FEATURE_BEGIN (offscreen, 255, 255, - /* for some reason the ARB version of this - extension doesn't have an ARB suffix for the - functions */ - "OES:\0", + "OES\0", "framebuffer_object\0", COGL_FEATURE_OFFSCREEN) COGL_FEATURE_FUNCTION (void, glGenRenderbuffers, -- 2.7.4