i965: Track that the stencil data was updated when clearing
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
This commit is contained in:
@@ -239,6 +239,14 @@ brw_clear(struct gl_context *ctx, GLbitfield mask)
|
||||
}
|
||||
}
|
||||
|
||||
if (mask & BUFFER_BIT_STENCIL) {
|
||||
struct intel_renderbuffer *stencil_irb =
|
||||
intel_get_renderbuffer(fb, BUFFER_STENCIL);
|
||||
struct intel_mipmap_tree *mt = stencil_irb->mt;
|
||||
if (mt && mt->stencil_mt)
|
||||
mt->stencil_mt->r8stencil_needs_update = true;
|
||||
}
|
||||
|
||||
/* BLORP is currently only supported on Gen6+. */
|
||||
if (brw->gen >= 6 && (mask & BUFFER_BITS_COLOR)) {
|
||||
const bool encode_srgb = ctx->Color.sRGBEnabled;
|
||||
|
||||
Reference in New Issue
Block a user