From: Jason Ekstrand Date: Sat, 14 May 2016 00:08:16 +0000 (-0700) Subject: anv/formats: Delete validate_GetPhysicalDeviceFormatProperties X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c1c004e5b2b3fc64b1d2525b6148389d2148f8f4;p=mesa.git anv/formats: Delete validate_GetPhysicalDeviceFormatProperties All it ever did was some extra logging that was useful when initially bringing up Dota2. We don't need it anymore. --- diff --git a/src/intel/vulkan/anv_formats.c b/src/intel/vulkan/anv_formats.c index 395f91783d7..b6fe32c729a 100644 --- a/src/intel/vulkan/anv_formats.c +++ b/src/intel/vulkan/anv_formats.c @@ -292,16 +292,6 @@ anv_get_isl_format(VkFormat format, VkImageAspectFlags aspect, // Format capabilities -void anv_validate_GetPhysicalDeviceFormatProperties( - VkPhysicalDevice physicalDevice, - VkFormat _format, - VkFormatProperties* pFormatProperties) -{ - const struct anv_format *format = anv_format_for_vk_format(_format); - fprintf(stderr, "vkGetFormatProperties(%s)\n", format->name); - anv_GetPhysicalDeviceFormatProperties(physicalDevice, _format, pFormatProperties); -} - static VkFormatFeatureFlags get_image_format_properties(int gen, enum isl_format base, enum isl_format actual,