v155: Bug 14435 - Remove abbreviations in VkClearColor
diff --git a/demos/cube.c b/demos/cube.c
index 5fa6000..759e636 100644
--- a/demos/cube.c
+++ b/demos/cube.c
@@ -514,8 +514,8 @@
         .framebuffer = VK_NULL_HANDLE,
     };
     const VkClearValue clear_values[2] = {
-        [0] = { .color.f32 = { 0.2f, 0.2f, 0.2f, 0.2f } },
-        [1] = { .ds = { 1.0f, 0 } },
+        [0] = { .color.float32 = { 0.2f, 0.2f, 0.2f, 0.2f } },
+        [1] = { .depthStencil = { 1.0f, 0 } },
     };
     const VkRenderPassBeginInfo rp_begin = {
         .sType = VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO,
diff --git a/demos/tri.c b/demos/tri.c
index ffc19cd..f515ae1 100644
--- a/demos/tri.c
+++ b/demos/tri.c
@@ -357,8 +357,8 @@
         .framebuffer = VK_NULL_HANDLE,
     };
     const VkClearValue clear_values[2] = {
-        [0] = { .color.f32 = { 0.2f, 0.2f, 0.2f, 0.2f } },
-        [1] = { .ds = { 0.9f, 0 } },
+        [0] = { .color.float32 = { 0.2f, 0.2f, 0.2f, 0.2f } },
+        [1] = { .depthStencil = { 0.9f, 0 } },
     };
     const VkRenderPassBeginInfo rp_begin = {
         .sType = VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO,