From: Marek Olšák Date: Tue, 8 Jul 2014 00:02:40 +0000 (+0200) Subject: radeonsi: mark MSAA config state as dirty at the beginning of CS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=be536efe20d7d0969e6d5286fc488fcc1c403b63;p=mesa.git radeonsi: mark MSAA config state as dirty at the beginning of CS Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=81020 Reviewed-by: Alex Deucher --- diff --git a/src/gallium/drivers/radeonsi/si_hw_context.c b/src/gallium/drivers/radeonsi/si_hw_context.c index e4ce3af3bae..56fa6649882 100644 --- a/src/gallium/drivers/radeonsi/si_hw_context.c +++ b/src/gallium/drivers/radeonsi/si_hw_context.c @@ -160,6 +160,7 @@ void si_begin_new_cs(struct si_context *ctx) ctx->emitted.named.init = ctx->queued.named.init; ctx->framebuffer.atom.dirty = true; + ctx->msaa_config.dirty = true; ctx->b.streamout.enable_atom.dirty = true; si_all_descriptors_begin_new_cs(ctx);