diff options
author | Samuel Pitoiset <[email protected]> | 2017-12-21 17:45:23 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-12-22 10:38:44 +0100 |
commit | 79c495aa377c486b220da538558177208999283d (patch) | |
tree | cd2e2c56584ad79b84eeb1828794f547fe3b3caa /src/amd/vulkan/radv_image.c | |
parent | 05944a392ebe30f8a67bf70e1fbc4eb088fb67a0 (diff) |
radv: reduce the number of small surfaces that need CMASK or DCC
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_image.c')
-rw-r--r-- | src/amd/vulkan/radv_image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_image.c b/src/amd/vulkan/radv_image.c index efd17e48896..15410f140e7 100644 --- a/src/amd/vulkan/radv_image.c +++ b/src/amd/vulkan/radv_image.c @@ -813,7 +813,7 @@ static inline bool radv_image_can_enable_dcc_or_cmask(struct radv_image *image) { if (image->info.samples <= 1 && - image->info.width <= 512 && image->info.height <= 512) { + image->info.width * image->info.height <= 512 * 512) { /* Do not enable CMASK or DCC for small surfaces where the cost * of the eliminate pass can be higher than the benefit of fast * clear. RadeonSI does this, but the image threshold is |