diff options
| author | Chia-I Wu <olv@lunarg.com> | 2015-05-25 16:22:52 +0800 |
|---|---|---|
| committer | Mark Lobodzinski <mark@lunarg.com> | 2015-06-02 09:09:49 -0500 |
| commit | 6d29a412f24aeb945f537c0b47a0dd7cf3a24a07 (patch) | |
| tree | d73b37b8a139d642d399b4410ca605602fd3b0c4 /include | |
| parent | 2dcdfd74f9efadad415fe0abbfecebc57a256ccc (diff) | |
| download | usermoji-6d29a412f24aeb945f537c0b47a0dd7cf3a24a07.tar.xz | |
v98: rename count to arraySize in VkDescriptorSetLayoutBinding
Conflicts:
include/vulkan.h
Diffstat (limited to 'include')
| -rw-r--r-- | include/vulkan.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vulkan.h b/include/vulkan.h index 36cca755..0a39d18b 100644 --- a/include/vulkan.h +++ b/include/vulkan.h @@ -33,7 +33,7 @@ #include "vk_platform.h" // Vulkan API version supported by this file -#define VK_API_VERSION VK_MAKE_VERSION(0, 97, 0) +#define VK_API_VERSION VK_MAKE_VERSION(0, 97, 1) #ifdef __cplusplus extern "C" @@ -1709,7 +1709,7 @@ typedef struct VkShaderCreateInfo_ typedef struct VkDescriptorSetLayoutBinding_ { VkDescriptorType descriptorType; // Type of the descriptors in this binding - uint32_t count; // Number of descriptors in this binding + uint32_t arraySize; // Number of descriptors in this binding VkShaderStageFlags stageFlags; // Shader stages this binding is visible to const VkSampler* pImmutableSamplers; // Immutable samplers (used if descriptor type is SAMPLER or COMBINED_IMAGE_SAMPLER, is either NULL or contains <count> number of elements) } VkDescriptorSetLayoutBinding; |
