tests: Fix android build of layer validation tests
diff --git a/tests/layer_validation_tests.cpp b/tests/layer_validation_tests.cpp
index e384cb3..b568854 100644
--- a/tests/layer_validation_tests.cpp
+++ b/tests/layer_validation_tests.cpp
@@ -3085,7 +3085,7 @@
// command buffer already has a layout recorded for the attachment.
VkRenderPassBeginInfo rpbi = {
VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO, nullptr,
- rp, fb, { 0, 0, 32, 32 },
+ rp, fb, { { 0, 0 } , { 32, 32 } },
0, nullptr
};
BeginCommandBuffer();
@@ -3188,7 +3188,7 @@
// if it doesn't occur.
VkRenderPassBeginInfo rpbi = {
VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO, nullptr,
- rp, fb, { 0, 0, 32, 32 },
+ rp, fb, { { 0, 0 }, { 32, 32 } },
0, nullptr
};
BeginCommandBuffer();
@@ -3262,7 +3262,7 @@
// bug manifests in BeginRenderPass.
VkRenderPassBeginInfo rpbi = {
VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO, nullptr,
- rp, fb, { 0, 0, 32, 32 },
+ rp, fb, { { 0, 0 }, { 32, 32 } },
0, nullptr
};
BeginCommandBuffer();