aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtney@LunarG.com>2015-10-16 09:46:00 -0600
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-10-23 17:32:04 -0600
commiteae391ef15d8d0d5d1043e5471fc3fccc348ad3a (patch)
tree0df8c57fb5984a6fa58fdcce3d76d5d3b27520c2 /include
parentdff021fa4c6027db3d8e9cc1d2322d121f273fc3 (diff)
downloadusermoji-eae391ef15d8d0d5d1043e5471fc3fccc348ad3a.tar.xz
bug-14786: Addressing layered subresources in vkCmdCopyImage
commit: ad27e2b Attempt at naming consistency
Diffstat (limited to 'include')
-rw-r--r--include/vulkan.h10
1 files changed, 5 insertions, 5 deletions
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 {