From: Connor Abbott Date: Mon, 18 May 2020 17:16:48 +0000 (+0200) Subject: tu: Support VK_FORMAT_FEATURE_BLIT_SRC_BIT for texture-only formats X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=518909290b0123f3bcfec8d6854c25ce451c44e8;p=mesa.git tu: Support VK_FORMAT_FEATURE_BLIT_SRC_BIT for texture-only formats It turns out this is required for compressed formats, and we might as well enable it for the one other texture-only format too. Part-of: --- diff --git a/src/freedreno/vulkan/tu_formats.c b/src/freedreno/vulkan/tu_formats.c index 8ae18433826..3dadbe1315b 100644 --- a/src/freedreno/vulkan/tu_formats.c +++ b/src/freedreno/vulkan/tu_formats.c @@ -379,7 +379,8 @@ tu_physical_device_get_format_properties( buffer |= VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT; if (native_fmt.supported & FMT_TEXTURE) { - optimal |= VK_FORMAT_FEATURE_TRANSFER_SRC_BIT | + optimal |= VK_FORMAT_FEATURE_BLIT_SRC_BIT | + VK_FORMAT_FEATURE_TRANSFER_SRC_BIT | VK_FORMAT_FEATURE_TRANSFER_DST_BIT | VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT | VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT | @@ -393,7 +394,6 @@ tu_physical_device_get_format_properties( if (native_fmt.supported & FMT_COLOR) { assert(native_fmt.supported & FMT_TEXTURE); optimal |= VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT | - VK_FORMAT_FEATURE_BLIT_SRC_BIT | VK_FORMAT_FEATURE_BLIT_DST_BIT; if (vk_format_is_float(format) ||