diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 02238c07d47..86d724d4082 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -3458,6 +3458,12 @@ radv_CreateDevice(VkPhysicalDevice physicalDevice, const VkDeviceCreateInfo *pCr use_dgc = true; break; } + case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GRAPHICS_PIPELINE_LIBRARY_FEATURES_EXT: { + const VkPhysicalDeviceGraphicsPipelineLibraryFeaturesEXT *features = (const void *)ext; + if (features->graphicsPipelineLibrary) + vs_prologs = true; + break; + } default: break; }