diff options
author | Bas Nieuwenhuizen <[email protected]> | 2015-10-21 00:10:37 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-10-24 00:42:24 +0200 |
commit | bb77467df9863c522c8d8550e295e2ad7bbef37c (patch) | |
tree | ce7be0295291c1ceec222d2ec8110cd5d1f637bd /src/gallium/drivers/radeon | |
parent | afa357c3b01322df31034f84613a4d8401a9486e (diff) |
radeonsi: Disable operations that do not work with DCC.
Signed-off-by: Bas Nieuwenhuizen <[email protected]>
Signed-off-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon')
-rw-r--r-- | src/gallium/drivers/radeon/r600_texture.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/r600_texture.c b/src/gallium/drivers/radeon/r600_texture.c index fffb9ef4cbe..c2a692c9af1 100644 --- a/src/gallium/drivers/radeon/r600_texture.c +++ b/src/gallium/drivers/radeon/r600_texture.c @@ -1290,6 +1290,11 @@ void evergreen_do_fast_color_clear(struct r600_common_context *rctx, continue; } + /* CMASK clear does not work for DCC compressed textures */ + if (tex->surface.dcc_enabled) { + continue; + } + /* ensure CMASK is enabled */ r600_texture_alloc_cmask_separate(rctx->screen, tex); if (tex->cmask.size == 0) { |