diff options
author | Pierre-Eric Pelloux-Prayer <[email protected]> | 2019-11-22 15:42:46 +0100 |
---|---|---|
committer | Pierre-Eric Pelloux-Prayer <[email protected]> | 2019-12-10 09:25:28 +0100 |
commit | f5c1cb23835d79faafc1819069c28b82cfcb5fc2 (patch) | |
tree | 5370e5cbadf53c7cb174b17e4778914587571cf3 /src/gallium/drivers/radeonsi/si_texture.c | |
parent | e3e91cebcd9307654eb3535e2f6521103ec8b997 (diff) |
radeonsi: dcc dirty flag
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_texture.c')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_texture.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeonsi/si_texture.c b/src/gallium/drivers/radeonsi/si_texture.c index 474bc00f8c4..161d0db7d4f 100644 --- a/src/gallium/drivers/radeonsi/si_texture.c +++ b/src/gallium/drivers/radeonsi/si_texture.c @@ -620,6 +620,7 @@ static void si_reallocate_texture_inplace(struct si_context *sctx, tex->can_sample_s = new_tex->can_sample_s; tex->separate_dcc_dirty = new_tex->separate_dcc_dirty; + tex->displayable_dcc_dirty = new_tex->displayable_dcc_dirty; tex->dcc_gather_statistics = new_tex->dcc_gather_statistics; si_resource_reference(&tex->dcc_separate_buffer, new_tex->dcc_separate_buffer); |