From: Piers Daniell Date: Fri, 26 Oct 2018 23:29:40 +0000 (-0600) Subject: Fix VK_KHR_depth_stencil_resolve coverage X-Git-Tag: upstream/1.3.5~1527^2~211 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a568f4c2872de3ca1c98d703ac9a377c65a9989d;p=platform%2Fupstream%2FVK-GL-CTS.git Fix VK_KHR_depth_stencil_resolve coverage The way the subtest names were generated for the depth_stencil_resolve group of tests caused coverage loss on implementations that don't have symmetric support for depth and stencil resolve modes. For example, the following test was constructed: dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_min_stencil_min_testing_depth The goal of this test is to verify VK_RESOLVE_MODE_MIN_BIT_KHR works for the depth aspect of a depth-only format. However, to run this test the implementation has to support VK_RESOLVE_MODE_MIN_BIT_KHR for stencil too, which it may not. Running this test on such an implementation throws NotSupported, which skips testing coverage. Since stencil is not involved in this test it doesn't make any sense to skip the test if the implementation doesn't support VK_RESOLVE_MODE_MIN_BIT_KHR for stencil. The fix is to improve the way tests are constructed such that only VK_RESOLVE_MODE_NONE_KHR resolve mode is used on aspects which don't exist in the format. This means the implementation doesn't need to support unnecessary resolve modes of one aspect to get testing coverage or the other. Affects: dEQP-VK.renderpass2.depth_stencil_resolve.* Change-Id: I36b9ca066949a7897db38ab1657debd833b4117d Components: Vulkan --- diff --git a/android/cts/master/vk-master.txt b/android/cts/master/vk-master.txt index 1e9a77b..12e1e06 100755 --- a/android/cts/master/vk-master.txt +++ b/android/cts/master/vk-master.txt @@ -285632,15 +285632,30 @@ dEQP-VK.renderpass2.dedicated_allocation.attachment_write_mask.attachment_count_ dEQP-VK.renderpass2.dedicated_allocation.attachment_write_mask.attachment_count_8.start_index_5 dEQP-VK.renderpass2.dedicated_allocation.attachment_write_mask.attachment_count_8.start_index_6 dEQP-VK.renderpass2.dedicated_allocation.attachment_write_mask.attachment_count_8.start_index_7 +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_max_stencil_max_testing_stencil @@ -285758,15 +285773,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_max_stencil_max_testing_stencil @@ -285884,15 +285914,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_max_stencil_max_testing_stencil @@ -286010,15 +286055,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_max_stencil_max_testing_stencil @@ -286136,15 +286196,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_max_stencil_max_testing_stencil @@ -286262,15 +286337,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_max_stencil_max_testing_stencil @@ -286388,15 +286478,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_max_stencil_max_testing_stencil @@ -286514,15 +286619,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_max_stencil_max_testing_stencil @@ -286640,15 +286760,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_max_stencil_max_testing_stencil @@ -286766,15 +286901,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_max_stencil_max_testing_stencil @@ -286892,15 +287042,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_max_stencil_max_testing_stencil @@ -287018,15 +287183,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_max_stencil_max_testing_stencil @@ -287144,15 +287324,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_max_stencil_max_testing_stencil @@ -287270,15 +287465,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_max_stencil_max_testing_stencil @@ -287396,15 +287606,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_max_stencil_max_testing_stencil @@ -287522,15 +287747,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_max_stencil_max_testing_stencil @@ -287648,15 +287888,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_max_stencil_max_testing_stencil @@ -287774,15 +288029,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_max_stencil_max_testing_stencil @@ -287900,15 +288170,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_max_stencil_max_testing_stencil @@ -288026,15 +288311,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat_s8_u dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_max_stencil_max_testing_stencil @@ -288152,15 +288452,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat_s8_u dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_max_stencil_max_testing_stencil @@ -288278,15 +288593,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat_s8_u dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_max_stencil_max_testing_stencil @@ -288404,15 +288734,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_max_stencil_max_testing_stencil @@ -288530,15 +288875,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_max_stencil_max_testing_stencil @@ -288656,15 +289016,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_max_stencil_max_testing_stencil @@ -288782,15 +289157,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_max_stencil_max_testing_stencil @@ -288908,15 +289298,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_max_stencil_max_testing_stencil @@ -289034,15 +289439,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_max_stencil_max_testing_stencil @@ -289160,15 +289580,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_max_stencil_max_testing_stencil @@ -289286,15 +289721,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_max_stencil_max_testing_stencil diff --git a/external/vulkancts/modules/vulkan/renderpass/vktRenderPassDepthStencilResolveTests.cpp b/external/vulkancts/modules/vulkan/renderpass/vktRenderPassDepthStencilResolveTests.cpp index bfa1f7f..a0e8256 100644 --- a/external/vulkancts/modules/vulkan/renderpass/vktRenderPassDepthStencilResolveTests.cpp +++ b/external/vulkancts/modules/vulkan/renderpass/vktRenderPassDepthStencilResolveTests.cpp @@ -1173,8 +1173,16 @@ void initTests (tcu::TestCaseGroup* group) if ((dResolve.flag == VK_RESOLVE_MODE_NONE_KHR) && (sResolve.flag == VK_RESOLVE_MODE_NONE_KHR)) continue; - // if there is no depth or stencil component then resolve mode for both should be same - if ((!hasDepth || !hasStencil) && (dResolve.flag != sResolve.flag)) + // If there is no depth, the depth resolve mode should be NONE, or + // match the stencil resolve mode. + if (!hasDepth && (dResolve.flag != VK_RESOLVE_MODE_NONE_KHR) && + (dResolve.flag != sResolve.flag)) + continue; + + // If there is no stencil, the stencil resmove mode should be NONE, or + // match the depth resolve mode. + if (!hasStencil && (sResolve.flag != VK_RESOLVE_MODE_NONE_KHR) && + (dResolve.flag != sResolve.flag)) continue; std::string baseName = "depth_" + dResolve.name + "_stencil_" + sResolve.name; diff --git a/external/vulkancts/mustpass/1.1.3/vk-default-no-waivers.txt b/external/vulkancts/mustpass/1.1.3/vk-default-no-waivers.txt index d417d37..aef145b 100644 --- a/external/vulkancts/mustpass/1.1.3/vk-default-no-waivers.txt +++ b/external/vulkancts/mustpass/1.1.3/vk-default-no-waivers.txt @@ -285649,15 +285649,30 @@ dEQP-VK.renderpass2.dedicated_allocation.attachment_write_mask.attachment_count_ dEQP-VK.renderpass2.dedicated_allocation.attachment_write_mask.attachment_count_8.start_index_5 dEQP-VK.renderpass2.dedicated_allocation.attachment_write_mask.attachment_count_8.start_index_6 dEQP-VK.renderpass2.dedicated_allocation.attachment_write_mask.attachment_count_8.start_index_7 +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_max_stencil_max_testing_stencil @@ -285775,15 +285790,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_max_stencil_max_testing_stencil @@ -285901,15 +285931,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_max_stencil_max_testing_stencil @@ -286027,15 +286072,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_max_stencil_max_testing_stencil @@ -286153,15 +286213,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_max_stencil_max_testing_stencil @@ -286279,15 +286354,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_max_stencil_max_testing_stencil @@ -286405,15 +286495,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_max_stencil_max_testing_stencil @@ -286531,15 +286636,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_max_stencil_max_testing_stencil @@ -286657,15 +286777,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_max_stencil_max_testing_stencil @@ -286783,15 +286918,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_max_stencil_max_testing_stencil @@ -286909,15 +287059,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_max_stencil_max_testing_stencil @@ -287035,15 +287200,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_max_stencil_max_testing_stencil @@ -287161,15 +287341,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_max_stencil_max_testing_stencil @@ -287287,15 +287482,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_max_stencil_max_testing_stencil @@ -287413,15 +287623,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_max_stencil_max_testing_stencil @@ -287539,15 +287764,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_max_stencil_max_testing_stencil @@ -287665,15 +287905,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_max_stencil_max_testing_stencil @@ -287791,15 +288046,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_max_stencil_max_testing_stencil @@ -287917,15 +288187,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_max_stencil_max_testing_stencil @@ -288043,15 +288328,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat_s8_u dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_max_stencil_max_testing_stencil @@ -288169,15 +288469,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat_s8_u dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_max_stencil_max_testing_stencil @@ -288295,15 +288610,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat_s8_u dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_max_stencil_max_testing_stencil @@ -288421,15 +288751,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_max_stencil_max_testing_stencil @@ -288547,15 +288892,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_max_stencil_max_testing_stencil @@ -288673,15 +289033,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_max_stencil_max_testing_stencil @@ -288799,15 +289174,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_max_stencil_max_testing_stencil @@ -288925,15 +289315,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_max_stencil_max_testing_stencil @@ -289051,15 +289456,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_max_stencil_max_testing_stencil @@ -289177,15 +289597,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_max_stencil_max_testing_stencil @@ -289303,15 +289738,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_max_stencil_max_testing_stencil diff --git a/external/vulkancts/mustpass/1.1.3/vk-default.txt b/external/vulkancts/mustpass/1.1.3/vk-default.txt index 5d75ca6..411fbda 100644 --- a/external/vulkancts/mustpass/1.1.3/vk-default.txt +++ b/external/vulkancts/mustpass/1.1.3/vk-default.txt @@ -285611,15 +285611,30 @@ dEQP-VK.renderpass2.dedicated_allocation.attachment_write_mask.attachment_count_ dEQP-VK.renderpass2.dedicated_allocation.attachment_write_mask.attachment_count_8.start_index_5 dEQP-VK.renderpass2.dedicated_allocation.attachment_write_mask.attachment_count_8.start_index_6 dEQP-VK.renderpass2.dedicated_allocation.attachment_write_mask.attachment_count_8.start_index_7 +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.s8_uint.depth_max_stencil_max_testing_stencil @@ -285737,15 +285752,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.s8_uint.depth_max_stencil_max_testing_stencil @@ -285863,15 +285893,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.s8_uint.depth_max_stencil_max_testing_stencil @@ -285989,15 +286034,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.s8_uint.depth_max_stencil_max_testing_stencil @@ -286115,15 +286175,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.s8_uint.depth_max_stencil_max_testing_stencil @@ -286241,15 +286316,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.s8_uint.depth_max_stencil_max_testing_stencil @@ -286367,15 +286457,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_32_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.s8_uint.depth_max_stencil_max_testing_stencil @@ -286493,15 +286598,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.s8_uint.depth_max_stencil_max_testing_stencil @@ -286619,15 +286739,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.s8_uint.depth_max_stencil_max_testing_stencil @@ -286745,15 +286880,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.s8_uint.depth_max_stencil_max_testing_stencil @@ -286871,15 +287021,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.s8_uint.depth_max_stencil_max_testing_stencil @@ -286997,15 +287162,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.s8_uint.depth_max_stencil_max_testing_stencil @@ -287123,15 +287303,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_8_32.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.s8_uint.depth_max_stencil_max_testing_stencil @@ -287249,15 +287444,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.s8_uint.depth_max_stencil_max_testing_stencil @@ -287375,15 +287585,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.s8_uint.depth_max_stencil_max_testing_stencil @@ -287501,15 +287726,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.s8_uint.depth_max_stencil_max_testing_stencil @@ -287627,15 +287867,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.s8_uint.depth_max_stencil_max_testing_stencil @@ -287753,15 +288008,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.s8_uint.depth_max_stencil_max_testing_stencil @@ -287879,15 +288149,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat_s dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.s8_uint.depth_max_stencil_max_testing_stencil @@ -288005,15 +288290,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat_s8_u dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.s8_uint.depth_max_stencil_max_testing_stencil @@ -288131,15 +288431,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat_s8_u dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.s8_uint.depth_max_stencil_max_testing_stencil @@ -288257,15 +288572,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat_s8_u dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.s8_uint.depth_max_stencil_max_testing_stencil @@ -288383,15 +288713,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.s8_uint.depth_max_stencil_max_testing_stencil @@ -288509,15 +288854,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.s8_uint.depth_max_stencil_max_testing_stencil @@ -288635,15 +288995,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_5_1.samples_64.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.s8_uint.depth_max_stencil_max_testing_stencil @@ -288761,15 +289136,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_2.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.s8_uint.depth_max_stencil_max_testing_stencil @@ -288887,15 +289277,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_4.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.s8_uint.depth_max_stencil_max_testing_stencil @@ -289013,15 +289418,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat_s8_ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_8.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.s8_uint.depth_max_stencil_max_testing_stencil @@ -289139,15 +289559,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_16.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.s8_uint.depth_max_stencil_max_testing_stencil @@ -289265,15 +289700,30 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat_s8 dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_32.d32_sfloat_s8_uint.depth_max_stencil_max_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d16_unorm.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.x8_d24_unorm_pack32.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_zero_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_zero_stencil_zero_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_average_stencil_none_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_min_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_min_stencil_min_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_max_stencil_none_testing_depth dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.d32_sfloat.depth_max_stencil_max_testing_depth +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_none_stencil_zero_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_none_stencil_min_testing_stencil +dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_none_stencil_max_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_zero_stencil_zero_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_min_stencil_min_testing_stencil dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_17_1.samples_64.s8_uint.depth_max_stencil_max_testing_stencil