gallium: check if surface has defined status in check_clear_depth_with_quad()
authorBrian <brian.paul@tungstengraphics.com>
Mon, 28 Jan 2008 16:23:29 +0000 (09:23 -0700)
committerBen Skeggs <skeggsb@gmail.com>
Fri, 15 Feb 2008 02:50:23 +0000 (13:50 +1100)
This was part of Keith's patch from Friday.

src/mesa/state_tracker/st_cb_clear.c

index 758d4a4..0cd469c 100644 (file)
@@ -408,7 +408,9 @@ check_clear_depth_with_quad(GLcontext *ctx, struct gl_renderbuffer *rb)
    const struct st_renderbuffer *strb = st_renderbuffer(rb);
    const GLboolean isDS = is_depth_stencil_format(strb->surface->format);
    return  ctx->Scissor.Enabled
-      || (isDS && ctx->DrawBuffer->Visual.stencilBits > 0);
+      || (isDS && 
+         strb->surface->status == PIPE_SURFACE_STATUS_DEFINED &&
+         ctx->DrawBuffer->Visual.stencilBits > 0);
 }