summaryrefslogtreecommitdiff
path: root/progs/tests/fbotexture.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-01-19 16:12:17 -0700
committerBrian Paul <brianp@vmware.com>2009-01-22 15:22:54 -0700
commitaed7403f32d71d6791678b356801c2b790c17686 (patch)
tree7d95ec0fdc9a35c65443e388a186315859830449 /progs/tests/fbotexture.c
parent1b199101ffd50e59372e1ecafaae48f369169292 (diff)
demos: updated FBO tests to for ARB_fbo
Some things that were not errors in EXT_fbo are errors in ARB_fbo.
Diffstat (limited to 'progs/tests/fbotexture.c')
-rw-r--r--progs/tests/fbotexture.c7
1 files changed, 5 insertions, 2 deletions
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);