radeon: fixup FBO depth 24 allocations to avoid assert
authorDave Airlie <airlied@redhat.com>
Mon, 6 Jul 2009 05:50:24 +0000 (15:50 +1000)
committerDave Airlie <airlied@redhat.com>
Mon, 6 Jul 2009 05:50:24 +0000 (15:50 +1000)
src/mesa/drivers/dri/radeon/radeon_fbo.c

index f62ca7f..dedd6c8 100644 (file)
@@ -146,8 +146,8 @@ radeon_alloc_renderbuffer_storage(GLcontext * ctx, struct gl_renderbuffer *rb,
    case GL_DEPTH_COMPONENT:
    case GL_DEPTH_COMPONENT24:
    case GL_DEPTH_COMPONENT32:
-      rb->_ActualFormat = GL_DEPTH24_STENCIL8_EXT;
-      rb->DataType = GL_UNSIGNED_INT_24_8_EXT;
+      rb->_ActualFormat = GL_DEPTH_COMPONENT24;
+      rb->DataType = GL_UNSIGNED_INT;
       rb->DepthBits = 24;
       cpp = 4;
       break;
@@ -305,7 +305,7 @@ radeon_create_renderbuffer(GLenum format, __DRIdrawablePrivate *driDrawPriv)
            rrb->base.DataType = GL_UNSIGNED_SHORT;
            break;
        case GL_DEPTH_COMPONENT24:
-           rrb->base._ActualFormat = GL_DEPTH24_STENCIL8_EXT;
+           rrb->base._ActualFormat = GL_DEPTH_COMPONENT24;
            rrb->base._BaseFormat = GL_DEPTH_COMPONENT;
            rrb->base.DepthBits = 24;
            rrb->base.DataType = GL_UNSIGNED_INT;