From aed7403f32d71d6791678b356801c2b790c17686 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 19 Jan 2009 16:12:17 -0700 Subject: demos: updated FBO tests to for ARB_fbo Some things that were not errors in EXT_fbo are errors in ARB_fbo. --- progs/tests/fbotexture.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'progs/tests/fbotexture.c') diff --git a/progs/tests/fbotexture.c b/progs/tests/fbotexture.c index 88d0549c80..fa231abddb 100644 --- a/progs/tests/fbotexture.c +++ b/progs/tests/fbotexture.c @@ -310,6 +310,7 @@ static void Init(int argc, char *argv[]) { static const GLfloat mat[4] = { 1.0, 0.5, 0.5, 1.0 }; + GLboolean ARB_fbo = glutExtensionSupported("GL_ARB_framebuffer_object"); GLint i; if (!glutExtensionSupported("GL_EXT_framebuffer_object")) { @@ -332,8 +333,10 @@ Init(int argc, char *argv[]) glGenFramebuffersEXT(1, &MyFB); assert(MyFB); assert(!glIsFramebufferEXT(MyFB)); - glDeleteFramebuffersEXT(1, &MyFB); - assert(!glIsFramebufferEXT(MyFB)); + if (!ARB_fbo) { + glDeleteFramebuffersEXT(1, &MyFB); + assert(!glIsFramebufferEXT(MyFB)); + } /* Note, continue to use MyFB below */ glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, MyFB); -- cgit v1.2.3