diff options
author | Constantine Kharlamov <[email protected]> | 2017-04-13 23:56:28 +0300 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2017-04-19 08:15:22 +0200 |
commit | 2a8a569276ded3528917ddf9f006eb7b1d1d66ad (patch) | |
tree | e21d184919e7bfd9458c178053cc838744751941 /src/gallium/drivers/r600/r600_state.c | |
parent | 51deba0eb35d0d27560bb7dad24b8d39abb58be6 (diff) |
r600g: update dirty_level_mask after the 1-st draw after FB change
Ported from radeonsi. Testing with Kane&Lynch2 shows ≈1k skipped updates per
frame on average.
No piglit changes with tests/gpu.py, gbm mode.
Signed-off-by: Constantine Kharlamov <[email protected]>
Tested-by: Dieter Nützel <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_state.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_state.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_state.c b/src/gallium/drivers/r600/r600_state.c index 06100abc4a4..fc93eb02ad2 100644 --- a/src/gallium/drivers/r600/r600_state.c +++ b/src/gallium/drivers/r600/r600_state.c @@ -1209,6 +1209,7 @@ static void r600_set_framebuffer_state(struct pipe_context *ctx, r600_mark_atom_dirty(rctx, &rctx->framebuffer.atom); r600_set_sample_locations_constant_buffer(rctx); + rctx->framebuffer.do_update_surf_dirtiness = true; } static uint32_t sample_locs_2x[] = { |