mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 02:08:49 +12:00
Enable stencil export extension when required
This commit is contained in:
parent
17a074e1ac
commit
19b2da2590
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue