diff options
author | Brian Paul <[email protected]> | 2008-08-08 13:06:54 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-08-08 13:06:54 -0600 |
commit | 74b14fe6ddbece8bc662aac4d3b2b18d8d853486 (patch) | |
tree | 47b5380d3e7e6bae0805cbab04977f77ff34ffa1 /src/mesa/main/fbobject.c | |
parent | 966e199e409a1b52eef88e48997442250997f45e (diff) |
mesa: fix some feature tests
Diffstat (limited to 'src/mesa/main/fbobject.c')
-rw-r--r-- | src/mesa/main/fbobject.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index 960cc6da229..b5605a199c5 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -508,6 +508,7 @@ _mesa_test_framebuffer_completeness(GLcontext *ctx, struct gl_framebuffer *fb) } } +#ifndef FEATURE_OES_framebuffer_object /* Check that all DrawBuffers are present */ for (j = 0; j < ctx->Const.MaxDrawBuffers; j++) { if (fb->ColorDrawBuffer[j] != GL_NONE) { @@ -533,6 +534,7 @@ _mesa_test_framebuffer_completeness(GLcontext *ctx, struct gl_framebuffer *fb) return; } } +#endif if (numImages == 0) { fb->_Status = GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT; |