projects
/
platform
/
upstream
/
Vulkan-Loader.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
953b080
)
loader: Handle vkGetDeviceQueue2 correctly
author
John Anthony
<john.anthony@arm.com>
Tue, 18 Sep 2018 12:19:48 +0000
(14:19 +0200)
committer
Lenny Komow
<lenny@lunarg.com>
Wed, 24 Oct 2018 18:23:59 +0000
(12:23 -0600)
Change-Id: I15f7677d5c6d8b4f0ff62bb7d371d173d58ae5f4
loader/gpa_helper.h
patch
|
blob
|
history
diff --git
a/loader/gpa_helper.h
b/loader/gpa_helper.h
index e5e99b97c72da2a27494e32c7ae475eb19e16824..e08898b6d881c9f09877c5f44f7a6b8cb5b5f440 100644
(file)
--- 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;