mesa: remove GL_DEPTH_TEST + no depth buffer test
authorBrian Paul <brianp@vmware.com>
Fri, 16 Jan 2009 20:25:41 +0000 (13:25 -0700)
committerBrian Paul <brianp@vmware.com>
Fri, 16 Jan 2009 20:25:41 +0000 (13:25 -0700)
One could enable depth testing before binding an FBO that has a depth buffer
so this test is no longer useful or correct.

src/mesa/main/enable.c

index 160a6fc..dae576a 100644 (file)
@@ -341,10 +341,6 @@ _mesa_set_enable(GLcontext *ctx, GLenum cap, GLboolean state)
          ctx->Transform.CullVertexFlag = state;
          break;
       case GL_DEPTH_TEST:
-         if (state && ctx->DrawBuffer->Visual.depthBits == 0) {
-            _mesa_warning(ctx,"glEnable(GL_DEPTH_TEST) but no depth buffer");
-            return;
-         }
          if (ctx->Depth.Test == state)
             return;
          FLUSH_VERTICES(ctx, _NEW_DEPTH);