From 14e9fbb4d656d39a5cb3ea13b4b504cfc34406af Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Wed, 7 Dec 2022 12:10:01 +0100 Subject: [PATCH] radv: enable graphicsPipelineLibraryFastLinking I think fast-linking could be improved a lot but this allows to test GPL with Zink (RADV_PERFTEST=gpl + ZINK_DEBUG=gpl). Signed-off-by: Samuel Pitoiset Reviewed-by: Bas Nieuwenhuizen Part-of: --- src/amd/vulkan/radv_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 611aa67fb98..deddec85d89 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -2713,7 +2713,7 @@ radv_GetPhysicalDeviceProperties2(VkPhysicalDevice physicalDevice, case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GRAPHICS_PIPELINE_LIBRARY_PROPERTIES_EXT: { VkPhysicalDeviceGraphicsPipelineLibraryPropertiesEXT *props = (VkPhysicalDeviceGraphicsPipelineLibraryPropertiesEXT *)ext; - props->graphicsPipelineLibraryFastLinking = false; + props->graphicsPipelineLibraryFastLinking = true; props->graphicsPipelineLibraryIndependentInterpolationDecoration = false; break; }