Module: Mesa Branch: master Commit: 012b54c6b108542787ac6ca0790c78744311f576 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=012b54c6b108542787ac6ca0790c78744311f576
Author: Chad Versace <[email protected]> Date: Thu Nov 2 15:34:04 2017 -0700 anv: Remove unused variable 'gen' In anv_physical_device_get_format_properties(). Reviewed-by: Jason Ekstrand <[email protected]> Reviewed-by: Lionel Landwerlin <[email protected]> --- src/intel/vulkan/anv_formats.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/intel/vulkan/anv_formats.c b/src/intel/vulkan/anv_formats.c index cece065398..cfff0991be 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) { _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
