mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-20 03:24:49 +00:00
fix: Disable VK_EXT_tooling_info on AMD proprietary for now.
This commit is contained in:
parent
22357f70c2
commit
843cd01308
1 changed files with 3 additions and 1 deletions
|
@ -254,7 +254,9 @@ bool Instance::CreateDevice() {
|
|||
add_extension(VK_EXT_SHADER_DEMOTE_TO_HELPER_INVOCATION_EXTENSION_NAME);
|
||||
add_extension(VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME);
|
||||
add_extension(VK_EXT_EXTENDED_DYNAMIC_STATE_EXTENSION_NAME);
|
||||
tooling_info = add_extension(VK_EXT_TOOLING_INFO_EXTENSION_NAME);
|
||||
// Currently causes issues with Reshade on AMD proprietary, disable until figured out.
|
||||
tooling_info = GetDriverID() != vk::DriverId::eAmdProprietary &&
|
||||
add_extension(VK_EXT_TOOLING_INFO_EXTENSION_NAME);
|
||||
const bool maintenance4 = add_extension(VK_KHR_MAINTENANCE_4_EXTENSION_NAME);
|
||||
|
||||
add_extension(VK_KHR_SWAPCHAIN_EXTENSION_NAME);
|
||||
|
|
Loading…
Add table
Reference in a new issue