Vulkan: Drop usage of VK_NV_glsl extension

It's not providing a large performance improvement anymore, after the
more recent drivers introduced a new shader compiler.
This commit is contained in:
Stenzek
2018-08-29 13:12:19 +10:00
parent b8b4e9af5e
commit 448e19629d
3 changed files with 1 additions and 73 deletions

View File

@ -418,7 +418,6 @@ bool VulkanContext::SelectDeviceExtensions(ExtensionList* extension_list, bool e
if (enable_surface && !SupportsExtension(VK_KHR_SWAPCHAIN_EXTENSION_NAME, true))
return false;
m_supports_nv_glsl_extension = SupportsExtension(VK_NV_GLSL_SHADER_EXTENSION_NAME, false);
return true;
}