diff options
author | Ilia Mirkin <[email protected]> | 2014-06-14 13:23:47 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-06-16 23:08:03 -0400 |
commit | af05270ccfaa15fde9845a2250922caa8902c0fe (patch) | |
tree | e131e4a029df8574dac7d54442886ab666fba261 /src/gallium/drivers/nouveau | |
parent | 49659ad90c501ae584b7d76ca98f35a8f57d40fe (diff) |
nv50: make sure to mark first scissor dirty after blit
Signed-off-by: Ilia Mirkin <[email protected]>
Cc: "10.2" <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau')
-rw-r--r-- | src/gallium/drivers/nouveau/nv50/nv50_surface.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nv50/nv50_surface.c b/src/gallium/drivers/nouveau/nv50/nv50_surface.c index 6e68fb8a18e..600f4f93b48 100644 --- a/src/gallium/drivers/nouveau/nv50/nv50_surface.c +++ b/src/gallium/drivers/nouveau/nv50/nv50_surface.c @@ -1106,6 +1106,7 @@ nv50_blitctx_post_blit(struct nv50_blitctx *blit) NV50_NEW_RASTERIZER | NV50_NEW_ZSA | NV50_NEW_BLEND | NV50_NEW_TEXTURES | NV50_NEW_SAMPLERS | NV50_NEW_VERTPROG | NV50_NEW_GMTYPROG | NV50_NEW_FRAGPROG); + nv50->scissors_dirty |= 1; nv50->base.pipe.set_min_samples(&nv50->base.pipe, blit->saved.min_samples); } |