From: Brian Date: Mon, 28 Jan 2008 16:23:29 +0000 (-0700) Subject: gallium: check if surface has defined status in check_clear_depth_with_quad() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=16ed55c6412d2bdc5bff78e99114490223fb4afe;p=mesa.git gallium: check if surface has defined status in check_clear_depth_with_quad() This was part of Keith's patch from Friday. --- diff --git a/src/mesa/state_tracker/st_cb_clear.c b/src/mesa/state_tracker/st_cb_clear.c index 758d4a40868..0cd469c156a 100644 --- a/src/mesa/state_tracker/st_cb_clear.c +++ b/src/mesa/state_tracker/st_cb_clear.c @@ -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); }