diff --git a/src/amd/vulkan/radv_formats.c b/src/amd/vulkan/radv_formats.c index 88794ada47b..4eeeac49950 100644 --- a/src/amd/vulkan/radv_formats.c +++ b/src/amd/vulkan/radv_formats.c @@ -47,9 +47,6 @@ radv_is_vertex_buffer_format_supported(VkFormat format) return false; const struct util_format_description *desc = vk_format_description(format); - unsigned type = desc->channel[first_non_void].type; - if (type == UTIL_FORMAT_TYPE_FIXED) - return false; if (desc->nr_channels == 4 && desc->channel[0].size == 10 && desc->channel[1].size == 10 && desc->channel[2].size == 10 && desc->channel[3].size == 2) @@ -401,9 +398,6 @@ radv_is_buffer_dataformat_supported(const struct util_format_description *desc, type = desc->channel[first_non_void].type; - if (type == UTIL_FORMAT_TYPE_FIXED) - return V_008F0C_BUF_DATA_FORMAT_INVALID; - if (desc->channel[first_non_void].size <= 16 && desc->nr_channels == 3 && desc->format != PIPE_FORMAT_R11G11B10_FLOAT) return false;