aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtney@LunarG.com>2015-09-10 16:38:41 -0600
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-09-11 09:20:02 -0600
commitfc465b826fb673984296411f5065902f55b2b0ae (patch)
tree28f09227876aba216c4a903bd0fb8981ecf74ea8 /include
parent41eb54959fd8b3fa8580312221433c1a1ba919f2 (diff)
downloadusermoji-fc465b826fb673984296411f5065902f55b2b0ae.tar.xz
bug 14313: Rename ArraySlice to ArrayLayer
Diffstat (limited to 'include')
-rw-r--r--include/vulkan.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vulkan.h b/include/vulkan.h
index 8218a67f..62a352e3 100644
--- a/include/vulkan.h
+++ b/include/vulkan.h
@@ -128,7 +128,7 @@ VK_DEFINE_NONDISP_HANDLE(VkCmdPool)
#define VK_LOD_CLAMP_NONE 1000.0f
#define VK_REMAINING_MIP_LEVELS (~0U)
-#define VK_REMAINING_ARRAY_SLICES (~0U)
+#define VK_REMAINING_ARRAY_LAYERS (~0U)
#define VK_WHOLE_SIZE (~0ULL)
#define VK_ATTACHMENT_UNUSED (~0U)
#define VK_TRUE 1
@@ -1423,7 +1423,7 @@ typedef struct {
typedef struct {
VkImageAspect aspect;
uint32_t mipLevel;
- uint32_t arraySlice;
+ uint32_t arrayLayer;
} VkImageSubresource;
typedef struct {
@@ -1523,7 +1523,7 @@ typedef struct {
VkImageAspect aspect;
uint32_t baseMipLevel;
uint32_t mipLevels;
- uint32_t baseArraySlice;
+ uint32_t baseArrayLayer;
uint32_t arraySize;
} VkImageSubresourceRange;