Module: Mesa Branch: master Commit: 9048dee32837d281fe7aee5fe34c438fa95ac9d2 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9048dee32837d281fe7aee5fe34c438fa95ac9d2
Author: Jason Ekstrand <[email protected]> Date: Fri May 27 17:16:09 2016 -0700 anv/formats: Exit early for unsupported formats --- src/intel/vulkan/anv_formats.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/intel/vulkan/anv_formats.c b/src/intel/vulkan/anv_formats.c index e7e0eca..457e820 100644 --- a/src/intel/vulkan/anv_formats.c +++ b/src/intel/vulkan/anv_formats.c @@ -376,8 +376,9 @@ anv_physical_device_get_format_properties(struct anv_physical_device *physical_d gen += 5; VkFormatFeatureFlags linear = 0, tiled = 0, buffer = 0; - if (anv_formats[format].isl_format != ISL_FORMAT_UNSUPPORTED && - vk_format_is_depth_or_stencil(format)) { + if (anv_formats[format].isl_format == ISL_FORMAT_UNSUPPORTED) { + /* Nothing to do here */ + } else if (vk_format_is_depth_or_stencil(format)) { tiled |= VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT; if (physical_device->info->gen >= 8) tiled |= VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
