diff options
author | Jason Ekstrand <[email protected]> | 2017-02-01 11:39:26 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-02-02 13:33:43 -0800 |
commit | ab06fc668453359a9b58b29a1160cb66bde0a920 (patch) | |
tree | 65b6c01dc7c5f296b05d37bb8cda88f5e9e55c62 /src/intel/vulkan | |
parent | 043d92fef9315dcc303f36d472eb38b5511bb2cd (diff) |
intel/isl: Rename supports_lossless_compression to supports_ccs_e
The term "lossless compression" could potentially mean multisample
color compression, single-sample color compression or HiZ because they
are all lossless. The term CCS_E, however, has a very precise meaning;
in ISL and is only used to refer to single-sample color compression.
It's also much shorter which is nice.
Reviewed-by: Samuel Iglesias Gonsálvez <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Reviewed-by: Anuj Phogat <[email protected]>
Reviewed-by: Nanley Chery <[email protected]>
Diffstat (limited to 'src/intel/vulkan')
-rw-r--r-- | src/intel/vulkan/anv_image.c | 2 | ||||
-rw-r--r-- | src/intel/vulkan/genX_cmd_buffer.c | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/intel/vulkan/anv_image.c b/src/intel/vulkan/anv_image.c index 1c4282162f3..94436ca8f5d 100644 --- a/src/intel/vulkan/anv_image.c +++ b/src/intel/vulkan/anv_image.c @@ -229,7 +229,7 @@ make_surface(const struct anv_device *dev, * leave compression on at all times for these formats. */ if (!(vk_info->flags & VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT) && - isl_format_supports_lossless_compression(&dev->info, format)) { + isl_format_supports_ccs_e(&dev->info, format)) { if (vk_info->usage & VK_IMAGE_USAGE_STORAGE_BIT) { /* * For now, we leave compression off for anything that may diff --git a/src/intel/vulkan/genX_cmd_buffer.c b/src/intel/vulkan/genX_cmd_buffer.c index 303ced982dc..20c9b157288 100644 --- a/src/intel/vulkan/genX_cmd_buffer.c +++ b/src/intel/vulkan/genX_cmd_buffer.c @@ -266,8 +266,7 @@ color_attachment_compute_aux_usage(struct anv_device *device, att_state->fast_clear = false; } - if (isl_format_supports_lossless_compression(&device->info, - iview->isl.format)) { + if (isl_format_supports_ccs_e(&device->info, iview->isl.format)) { att_state->aux_usage = ISL_AUX_USAGE_CCS_E; att_state->input_aux_usage = ISL_AUX_USAGE_CCS_E; } else if (att_state->fast_clear) { |