tests: Update another DS format to be mobile-friendly
Test "DepthStencilImageViewWithColorAspectBitError" was using
VK_FORMAT_D32_SFLOAT_S8_UINT which failed on a mobile device so
switching to more mobile-friendly VK_FORMAT_D24_UNORM_S8_UINT.
diff --git a/tests/layer_validation_tests.cpp b/tests/layer_validation_tests.cpp
index 6d10eba..5c21899 100644
--- a/tests/layer_validation_tests.cpp
+++ b/tests/layer_validation_tests.cpp
@@ -11150,7 +11150,7 @@
VkImage image_bad;
VkImage image_good;
// One bad format and one good format for Color attachment
- const VkFormat tex_format_bad = VK_FORMAT_D32_SFLOAT_S8_UINT;
+ const VkFormat tex_format_bad = VK_FORMAT_D24_UNORM_S8_UINT;
const VkFormat tex_format_good = VK_FORMAT_B8G8R8A8_UNORM;
const int32_t tex_width = 32;
const int32_t tex_height = 32;