diff options
author | Marek Olšák <[email protected]> | 2014-07-08 02:02:40 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-07-08 20:46:23 +0200 |
commit | be536efe20d7d0969e6d5286fc488fcc1c403b63 (patch) | |
tree | 66233f359f3b903583a4a9474b5f240acb983254 /src/gallium/drivers | |
parent | fe6be9926f63e68d9007571956bed0687003e932 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_hw_context.c | 1 |
1 files changed, 1 insertions, 0 deletions
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); |