1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 18:53:28 +01:00

Enable stencil export extension when required

This commit is contained in:
kd-11 2021-09-19 19:01:12 +03:00 committed by kd-11
parent 17a074e1ac
commit 19b2da2590

View File

@ -312,6 +312,11 @@ namespace vk
requested_extensions.push_back(VK_EXT_EXTERNAL_MEMORY_HOST_EXTENSION_NAME);
}
if (pgpu->stencil_export_support)
{
requested_extensions.push_back(VK_EXT_SHADER_STENCIL_EXPORT_EXTENSION_NAME);
}
enabled_features.robustBufferAccess = VK_TRUE;
enabled_features.fullDrawIndexUint32 = VK_TRUE;
enabled_features.independentBlend = VK_TRUE;