bug 14918 part 4: more cleanups (WIP)
diff --git a/demos/cube.c b/demos/cube.c
index a73f2d1..fd7644e 100644
--- a/demos/cube.c
+++ b/demos/cube.c
@@ -845,7 +845,7 @@
             .sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO,
             .pNext = NULL,
             .format = demo->format,
-            .channels = {
+            .components = {
                 .r = VK_COMPONENT_SWIZZLE_R,
                 .g = VK_COMPONENT_SWIZZLE_G,
                 .b = VK_COMPONENT_SWIZZLE_B,
@@ -1196,7 +1196,7 @@
             .image = VK_NULL_HANDLE,
             .viewType = VK_IMAGE_VIEW_TYPE_2D,
             .format = tex_format,
-            .channels = { VK_COMPONENT_SWIZZLE_R,
+            .components = { VK_COMPONENT_SWIZZLE_R,
                           VK_COMPONENT_SWIZZLE_G,
                           VK_COMPONENT_SWIZZLE_B,
                           VK_COMPONENT_SWIZZLE_A, },