diff options
Diffstat (limited to 'layers/basic.cpp')
| -rw-r--r-- | layers/basic.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/layers/basic.cpp b/layers/basic.cpp index de2755b2..387efbee 100644 --- a/layers/basic.cpp +++ b/layers/basic.cpp @@ -166,6 +166,8 @@ VK_LAYER_EXPORT void * VKAPI vkGetInstanceProcAddr(VkInstance instance, const ch if (!strcmp("vkDestroyInstance", pName)) return (void *) vkDestroyInstance; + if (!strcmp("vkCreateDevice", pName)) + return (void *) vkCreateDevice; if (!strcmp("vkEnumeratePhysicalDevices", pName)) return (void*) vkEnumeratePhysicalDevices; if (!strcmp("vkGetGlobalExtensionCount", pName)) |
