diff options
| author | Chia-I Wu <olv@lunarg.com> | 2015-11-06 06:42:02 +0800 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2015-11-06 15:34:07 -0700 |
| commit | 8b4974426523e356ef4fae9088ca157092e80d06 (patch) | |
| tree | 9e8672286ea9e65343caa58ba2741ebd92374c19 /loader | |
| parent | 242c24fae2b831e63a076151880119f52aed408d (diff) | |
| download | usermoji-8b4974426523e356ef4fae9088ca157092e80d06.tar.xz | |
bug 15085: queue creation naming issues
Manually rename arraySize and
s/queuePriorityCount/queueCount/g
s/requestedQueueCount/queueCreateInfoCount/g
s/pRequestedQueues/pQueueCreateInfos/g
https://cvs.khronos.org/bugzilla/show_bug.cgi?id=15085
Conflicts:
layers/draw_state.cpp
Diffstat (limited to 'loader')
| -rw-r--r-- | loader/loader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/loader.c b/loader/loader.c index e8a1210c..459f0e10 100644 --- a/loader/loader.c +++ b/loader/loader.c @@ -2966,7 +2966,7 @@ VKAPI_ATTR VkResult VKAPI_CALL loader_CreateDevice( char **filtered_extension_names = NULL; VkResult res; - assert(pCreateInfo->requestedQueueCount >= 1); + assert(pCreateInfo->queueCreateInfoCount >= 1); if (!icd) return VK_ERROR_INITIALIZATION_FAILED; |
