From 6d29a412f24aeb945f537c0b47a0dd7cf3a24a07 Mon Sep 17 00:00:00 2001 From: Chia-I Wu Date: Mon, 25 May 2015 16:22:52 +0800 Subject: v98: rename count to arraySize in VkDescriptorSetLayoutBinding Conflicts: include/vulkan.h --- include/vulkan.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') 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 number of elements) } VkDescriptorSetLayoutBinding; -- cgit v1.2.3