From eae391ef15d8d0d5d1043e5471fc3fccc348ad3a Mon Sep 17 00:00:00 2001 From: Courtney Goeltzenleuchter Date: Fri, 16 Oct 2015 09:46:00 -0600 Subject: bug-14786: Addressing layered subresources in vkCmdCopyImage commit: ad27e2b Attempt at naming consistency --- include/vulkan.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'include') diff --git a/include/vulkan.h b/include/vulkan.h index 8bc88627..fd7d2074 100644 --- a/include/vulkan.h +++ b/include/vulkan.h @@ -1179,7 +1179,7 @@ typedef struct { typedef struct { VkExtent3D maxExtent; uint32_t maxMipLevels; - uint32_t maxArraySize; + uint32_t maxArrayLayers; VkSampleCountFlags sampleCounts; VkDeviceSize maxResourceSize; } VkImageFormatProperties; @@ -1512,9 +1512,9 @@ typedef struct { typedef struct { VkImageAspectFlags aspectMask; uint32_t baseMipLevel; - uint32_t mipLevels; + uint32_t numLevels; uint32_t baseArrayLayer; - uint32_t arraySize; + uint32_t numLayers; } VkImageSubresourceRange; typedef struct { @@ -1952,8 +1952,8 @@ typedef struct { typedef struct { VkImageAspectFlags aspect; uint32_t mipLevel; - uint32_t arrayLayer; - uint32_t arraySize; + uint32_t baseArrayLayer; + uint32_t numLayers; } VkImageSubresourceCopy; typedef struct { -- cgit v1.2.3