aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2015-11-06 06:42:02 +0800
committerJon Ashburn <jon@lunarg.com>2015-11-06 15:34:07 -0700
commit8b4974426523e356ef4fae9088ca157092e80d06 (patch)
tree9e8672286ea9e65343caa58ba2741ebd92374c19 /include
parent242c24fae2b831e63a076151880119f52aed408d (diff)
downloadusermoji-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 'include')
-rw-r--r--include/vulkan/vulkan.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/vulkan/vulkan.h b/include/vulkan/vulkan.h
index 4eb7e96a..792d02ae 100644
--- a/include/vulkan/vulkan.h
+++ b/include/vulkan/vulkan.h
@@ -1340,7 +1340,7 @@ typedef struct VkDeviceQueueCreateInfo {
const void* pNext;
VkDeviceQueueCreateFlags flags;
uint32_t queueFamilyIndex;
- uint32_t queuePriorityCount;
+ uint32_t queueCount;
const float* pQueuePriorities;
} VkDeviceQueueCreateInfo;
@@ -1348,8 +1348,8 @@ typedef struct VkDeviceCreateInfo {
VkStructureType sType;
const void* pNext;
VkDeviceCreateFlags flags;
- uint32_t requestedQueueCount;
- const VkDeviceQueueCreateInfo* pRequestedQueues;
+ uint32_t queueCreateInfoCount;
+ const VkDeviceQueueCreateInfo* pQueueCreateInfos;
uint32_t enabledLayerNameCount;
const char*const* ppEnabledLayerNames;
uint32_t enabledExtensionNameCount;
@@ -1841,7 +1841,7 @@ typedef struct VkSamplerCreateInfo {
typedef struct VkDescriptorSetLayoutBinding {
uint32_t binding;
VkDescriptorType descriptorType;
- uint32_t arraySize;
+ uint32_t descriptorCount;
VkShaderStageFlags stageFlags;
const VkSampler* pImmutableSamplers;
} VkDescriptorSetLayoutBinding;