mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-01-25 10:00:45 +01:00
vk: Properly initialize multi draw extension
This commit is contained in:
parent
ef95fa9f5f
commit
2e624789ff
|
|
@ -524,6 +524,11 @@ namespace vk
|
|||
requested_extensions.push_back(VK_EXT_CUSTOM_BORDER_COLOR_EXTENSION_NAME);
|
||||
}
|
||||
|
||||
if (pgpu->multidraw_support)
|
||||
{
|
||||
requested_extensions.push_back(VK_EXT_MULTI_DRAW_EXTENSION_NAME);
|
||||
}
|
||||
|
||||
if (pgpu->optional_features_support.conditional_rendering)
|
||||
{
|
||||
requested_extensions.push_back(VK_EXT_CONDITIONAL_RENDERING_EXTENSION_NAME);
|
||||
|
|
|
|||
Loading…
Reference in a new issue