summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp
diff options
context:
space:
mode:
authorStenzek <stenzek@gmail.com>2019-10-01 01:08:40 +1000
committerStenzek <stenzek@gmail.com>2019-10-31 22:45:59 +1000
commit6fc6444687a7cdd7ece0ce4841f59323b00c3df6 (patch)
treee6752092288a5fcec5b87b3cd2736399b2a574be /Source/Core/VideoBackends/Vulkan/VulkanContext.cpp
parent230190fc366221281099f543ded40725db3b8980 (diff)
Vulkan: Explicitly enable VK_KHR_get_physical_device_properties2
This was missing from the subgroup PR way back.
Diffstat (limited to 'Source/Core/VideoBackends/Vulkan/VulkanContext.cpp')
-rw-r--r--Source/Core/VideoBackends/Vulkan/VulkanContext.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp b/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp
index e9a79c468e..ded3ed9996 100644
--- a/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp
+++ b/Source/Core/VideoBackends/Vulkan/VulkanContext.cpp
@@ -222,6 +222,8 @@ bool VulkanContext::SelectInstanceExtensions(std::vector<const char*>* extension
if (enable_debug_report && !AddExtension(VK_EXT_DEBUG_REPORT_EXTENSION_NAME, false))
WARN_LOG(VIDEO, "Vulkan: Debug report requested, but extension is not available.");
+ AddExtension(VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME, false);
+
return true;
}