diff options
author | John Anthony <john.anthony@arm.com> | 2018-09-18 14:19:48 +0200 |
---|---|---|
committer | Lenny Komow <lenny@lunarg.com> | 2018-10-24 12:23:59 -0600 |
commit | 4e4c9f24085cae417131a608400d6bdcc7a496e0 (patch) | |
tree | 1b2b4227679559ea4426f45a5ec193bc3ed249fa | |
parent | 953b0807fd4d9487b9c888539ab3adefa4329820 (diff) | |
download | Vulkan-Loader-4e4c9f24085cae417131a608400d6bdcc7a496e0.tar.gz Vulkan-Loader-4e4c9f24085cae417131a608400d6bdcc7a496e0.tar.bz2 Vulkan-Loader-4e4c9f24085cae417131a608400d6bdcc7a496e0.zip |
loader: Handle vkGetDeviceQueue2 correctly
Change-Id: I15f7677d5c6d8b4f0ff62bb7d371d173d58ae5f4
-rw-r--r-- | loader/gpa_helper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/loader/gpa_helper.h b/loader/gpa_helper.h index e5e99b97..e08898b6 100644 --- a/loader/gpa_helper.h +++ b/loader/gpa_helper.h @@ -226,6 +226,7 @@ static inline void *loader_non_passthrough_gdpa(const char *name) { if (!strcmp(name, "GetDeviceProcAddr")) return vkGetDeviceProcAddr; if (!strcmp(name, "DestroyDevice")) return vkDestroyDevice; if (!strcmp(name, "GetDeviceQueue")) return vkGetDeviceQueue; + if (!strcmp(name, "GetDeviceQueue2")) return vkGetDeviceQueue2; if (!strcmp(name, "AllocateCommandBuffers")) return vkAllocateCommandBuffers; return NULL; |