We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 750caf3 commit a7f9a0dCopy full SHA for a7f9a0d
source_common/framework/manual_functions.cpp
@@ -113,11 +113,14 @@ VkLayerDeviceCreateInfo* getChainInfo(const VkDeviceCreateInfo* pCreateInfo)
113
/* See header for documentation. */
114
std::pair<bool, PFN_vkVoidFunction> getInstanceLayerFunction(const char* name)
115
{
116
- const std::array<const char*, 4> globalFunctions {
+ const std::array<const char*, 5> globalFunctions {
117
+ // Supported since Vulkan 1.0
118
"vkCreateInstance",
119
"vkEnumerateInstanceVersion",
120
"vkEnumerateInstanceExtensionProperties",
- "vkEnumerateInstanceLayerProperties"
121
+ "vkEnumerateInstanceLayerProperties",
122
+ // Supported since Vulkan 1.2
123
+ "vkGetInstanceProcAddr",
124
};
125
126
bool isGlobal {false};
0 commit comments