bug 14313: Rename ArraySlice to ArrayLayer
diff --git a/demos/cube.c b/demos/cube.c
index 0404f48..1816bc1 100644
--- a/demos/cube.c
+++ b/demos/cube.c
@@ -791,7 +791,7 @@
.aspect = VK_IMAGE_ASPECT_COLOR,
.baseMipLevel = 0,
.mipLevels = 1,
- .baseArraySlice = 0,
+ .baseArrayLayer = 0,
.arraySize = 1
},
.viewType = VK_IMAGE_VIEW_TYPE_2D,
@@ -844,7 +844,7 @@
.aspect = VK_IMAGE_ASPECT_DEPTH,
.baseMipLevel = 0,
.mipLevels = 1,
- .baseArraySlice = 0,
+ .baseArrayLayer = 0,
.arraySize = 1
},
.flags = 0,
@@ -1114,7 +1114,7 @@
const VkImageSubresource subres = {
.aspect = VK_IMAGE_ASPECT_COLOR,
.mipLevel = 0,
- .arraySlice = 0,
+ .arrayLayer = 0,
};
VkSubresourceLayout layout;
void *data;