From: Chad Versace Date: Thu, 2 Nov 2017 22:34:04 +0000 (-0700) Subject: anv: Remove unused variable 'gen' X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=012b54c6b108542787ac6ca0790c78744311f576;p=mesa.git anv: Remove unused variable 'gen' In anv_physical_device_get_format_properties(). Reviewed-by: Jason Ekstrand Reviewed-by: Lionel Landwerlin --- diff --git a/src/intel/vulkan/anv_formats.c b/src/intel/vulkan/anv_formats.c index cece065398e..cfff0991bef 100644 --- a/src/intel/vulkan/anv_formats.c +++ b/src/intel/vulkan/anv_formats.c @@ -541,10 +541,6 @@ anv_physical_device_get_format_properties(struct anv_physical_device *physical_d VkFormat vk_format, VkFormatProperties *out_properties) { - int gen = physical_device->info.gen * 10; - if (physical_device->info.is_haswell) - gen += 5; - const struct anv_format *format = anv_get_format(vk_format); VkFormatFeatureFlags linear = 0, tiled = 0, buffer = 0; if (format == NULL) {