Now that layout code supports this, we can enable it.
Signed-off-by: Jonathan Marek <jonathan@marek.ca>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5009>
/* disable tiling when linear is requested and for compressed formats */
if (pCreateInfo->tiling == VK_IMAGE_TILING_LINEAR ||
- modifier == DRM_FORMAT_MOD_LINEAR ||
- vk_format_is_compressed(image->vk_format)) {
+ modifier == DRM_FORMAT_MOD_LINEAR) {
image->layout.tile_mode = TILE6_LINEAR;
ubwc_enabled = false;
}
+ /* don't use UBWC with compressed formats */
+ if (vk_format_is_compressed(image->vk_format))
+ ubwc_enabled = false;
+
/* UBWC can't be used with E5B9G9R9 */
if (image->vk_format == VK_FORMAT_E5B9G9R9_UFLOAT_PACK32)
ubwc_enabled = false;