From eee0fdf5b023f85b3e5c32520ceafaff53992166 Mon Sep 17 00:00:00 2001 From: wangshi Date: Wed, 30 Aug 2023 19:19:49 +0800 Subject: [PATCH] "add vulkan cases commit texture and ubo testcases for vulkan" Signed-off-by: wangshi --- .../texture/Texture_shadow02TestCase.cpp | 1817 +++++++++++++++++ 1 file changed, 1817 insertions(+) create mode 100644 graphic/vulkan/src/texture/texture/Texture_shadow02TestCase.cpp diff --git a/graphic/vulkan/src/texture/texture/Texture_shadow02TestCase.cpp b/graphic/vulkan/src/texture/texture/Texture_shadow02TestCase.cpp new file mode 100644 index 000000000..f705747e5 --- /dev/null +++ b/graphic/vulkan/src/texture/texture/Texture_shadow02TestCase.cpp @@ -0,0 +1,1817 @@ +/* + * Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include +#include +#include "../TextureBaseFunc.h" +#include "../ActsTexture0002TestSuite.h" +#include "shrinkdefine.h" + +using namespace std; +using namespace testing::ext; +using namespace OHOS; + +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestLessorequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparselessorequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestLessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest.less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparselessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestLessorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparselessorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestLessorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparselessorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestLessorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparselessorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestLessorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest.less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparselessorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestLessorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparselessorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestLessorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparselessorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestGreaterorequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsegreaterorequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestGreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest.greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsegreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestGreaterorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsegreaterorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestGreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsegreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestGreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsegreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestGreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest.greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsegreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestGreaterorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsegreaterorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestGreaterorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsegreaterorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestLessd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparselessd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestLessx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest.less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparselessx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestLessd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparselessd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestLessd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparselessd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestLessd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparselessd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestLessd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest.less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparselessd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestLessr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparselessr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestLessr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparselessr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestGreaterd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsegreaterd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestGreaterx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest.greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsegreaterx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestGreaterd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsegreaterd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestGreaterd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsegreaterd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestGreaterd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsegreaterd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestGreaterd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest.greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsegreaterd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestGreaterr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsegreaterr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestGreaterr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsegreaterr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestEquald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparseequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestEqualx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest.equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparseequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestEquald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparseequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestEquald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparseequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestEquald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparseequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestEquald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest.equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparseequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestEqualr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparseequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestEqualr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparseequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestNotequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsenotequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestNotequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest.not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsenotequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestNotequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsenotequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestNotequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsenotequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestNotequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsenotequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestNotequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest.not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsenotequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestNotequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsenotequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestNotequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsenotequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestAlwaysd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsealwaysd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestAlwaysx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest.always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsealwaysx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestAlwaysd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsealwaysd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestAlwaysd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsealwaysd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestAlwaysd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsealwaysd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestAlwaysd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest.always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsealwaysd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestAlwaysr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsealwaysr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestAlwaysr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparsealwaysr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestNeverd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparseneverd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestNeverx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest.never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparseneverx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestNeverd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparseneverd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestNeverd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparseneverd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestNeverd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparseneverd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestNeverd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest.never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparseneverd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestNeverr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparseneverr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestNeverr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestSparseneverr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest.sparse_never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearLessorequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear.less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparselessorequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear.sparse_less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearLessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear.less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparselessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear.sparse_less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearLessorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparselessorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.sparse_less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearLessorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparselessorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearLessorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparselessorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearLessorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear.less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparselessorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearLessorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear.less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparselessorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear.sparse_less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearLessorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparselessorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.sparse_less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearGreaterorequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear.greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsegreaterorequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear.sparse_greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearGreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear.greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsegreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear.sparse_greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearGreaterorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsegreaterorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.sparse_greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearGreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsegreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearGreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsegreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearGreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear.greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsegreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearGreaterorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear.greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsegreaterorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear.sparse_greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearGreaterorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsegreaterorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.sparse_greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearLessd16unorm, "dEQP-VK.texture.shadow.2d_array.linear.less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparselessd16unorm, "dEQP-VK.texture.shadow.2d_array.linear.sparse_less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearLessx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear.less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparselessx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear.sparse_less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearLessd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparselessd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.sparse_less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearLessd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparselessd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearLessd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparselessd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearLessd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear.less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparselessd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearLessr16unorm, "dEQP-VK.texture.shadow.2d_array.linear.less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparselessr16unorm, "dEQP-VK.texture.shadow.2d_array.linear.sparse_less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearLessr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparselessr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.sparse_less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearGreaterd16unorm, "dEQP-VK.texture.shadow.2d_array.linear.greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsegreaterd16unorm, "dEQP-VK.texture.shadow.2d_array.linear.sparse_greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearGreaterx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear.greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsegreaterx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear.sparse_greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearGreaterd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsegreaterd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.sparse_greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearGreaterd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsegreaterd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearGreaterd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsegreaterd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearGreaterd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear.greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsegreaterd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearGreaterr16unorm, "dEQP-VK.texture.shadow.2d_array.linear.greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsegreaterr16unorm, "dEQP-VK.texture.shadow.2d_array.linear.sparse_greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearGreaterr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsegreaterr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.sparse_greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearEquald16unorm, "dEQP-VK.texture.shadow.2d_array.linear.equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparseequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear.sparse_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearEqualx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear.equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparseequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear.sparse_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearEquald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparseequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.sparse_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearEquald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparseequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearEquald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparseequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearEquald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear.equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparseequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearEqualr16unorm, "dEQP-VK.texture.shadow.2d_array.linear.equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparseequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear.sparse_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearEqualr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparseequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.sparse_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearNotequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear.not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsenotequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear.sparse_not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearNotequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear.not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsenotequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear.sparse_not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearNotequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsenotequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.sparse_not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearNotequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsenotequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearNotequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsenotequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearNotequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear.not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsenotequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearNotequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear.not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsenotequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear.sparse_not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearNotequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsenotequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.sparse_not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearAlwaysd16unorm, "dEQP-VK.texture.shadow.2d_array.linear.always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsealwaysd16unorm, "dEQP-VK.texture.shadow.2d_array.linear.sparse_always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearAlwaysx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear.always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsealwaysx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear.sparse_always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearAlwaysd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsealwaysd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.sparse_always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearAlwaysd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsealwaysd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearAlwaysd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsealwaysd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearAlwaysd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear.always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsealwaysd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearAlwaysr16unorm, "dEQP-VK.texture.shadow.2d_array.linear.always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsealwaysr16unorm, "dEQP-VK.texture.shadow.2d_array.linear.sparse_always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearAlwaysr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparsealwaysr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.sparse_always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearNeverd16unorm, "dEQP-VK.texture.shadow.2d_array.linear.never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparseneverd16unorm, "dEQP-VK.texture.shadow.2d_array.linear.sparse_never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearNeverx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear.never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparseneverx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear.sparse_never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearNeverd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparseneverd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.sparse_never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearNeverd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparseneverd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearNeverd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparseneverd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearNeverd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear.never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparseneverd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear.sparse_never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearNeverr16unorm, "dEQP-VK.texture.shadow.2d_array.linear.never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparseneverr16unorm, "dEQP-VK.texture.shadow.2d_array.linear.sparse_never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearNeverr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearSparseneverr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear.sparse_never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestLessorequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparselessorequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestLessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparselessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestLessorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparselessorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestLessorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparselessorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestLessorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparselessorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestLessorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparselessorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestLessorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparselessorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestLessorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparselessorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestGreaterorequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsegreaterorequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestGreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsegreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestGreaterorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsegreaterorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestGreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsegreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestGreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsegreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestGreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsegreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestGreaterorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsegreaterorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestGreaterorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsegreaterorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestLessd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparselessd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestLessx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparselessx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestLessd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparselessd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestLessd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparselessd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestLessd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparselessd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestLessd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparselessd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestLessr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparselessr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestLessr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparselessr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestGreaterd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsegreaterd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestGreaterx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsegreaterx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestGreaterd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsegreaterd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestGreaterd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsegreaterd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestGreaterd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsegreaterd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestGreaterd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsegreaterd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestGreaterr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsegreaterr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestGreaterr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsegreaterr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestEquald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparseequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestEqualx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparseequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestEquald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparseequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestEquald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparseequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestEquald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparseequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestEquald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparseequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestEqualr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparseequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestEqualr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparseequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestNotequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsenotequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestNotequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsenotequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestNotequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsenotequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestNotequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsenotequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestNotequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsenotequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestNotequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsenotequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestNotequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsenotequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestNotequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsenotequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestAlwaysd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsealwaysd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestAlwaysx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsealwaysx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestAlwaysd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsealwaysd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestAlwaysd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsealwaysd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestAlwaysd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsealwaysd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestAlwaysd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsealwaysd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestAlwaysr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsealwaysr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestAlwaysr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparsealwaysr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestNeverd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparseneverd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestNeverx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparseneverx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestNeverd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparseneverd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestNeverd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparseneverd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestNeverd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparseneverd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestNeverd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparseneverd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestNeverr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparseneverr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestNeverr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmapnearestSparseneverr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_nearest.sparse_never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestLessorequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparselessorequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestLessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparselessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestLessorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparselessorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestLessorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparselessorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestLessorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparselessorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestLessorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparselessorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestLessorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparselessorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestLessorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparselessorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestGreaterorequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsegreaterorequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestGreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsegreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestGreaterorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsegreaterorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestGreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsegreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestGreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsegreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestGreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsegreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestGreaterorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsegreaterorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestGreaterorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsegreaterorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestLessd16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparselessd16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestLessx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparselessx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestLessd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparselessd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestLessd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparselessd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestLessd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparselessd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestLessd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparselessd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestLessr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparselessr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestLessr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparselessr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestGreaterd16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsegreaterd16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestGreaterx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsegreaterx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestGreaterd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsegreaterd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestGreaterd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsegreaterd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestGreaterd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsegreaterd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestGreaterd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsegreaterd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestGreaterr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsegreaterr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestGreaterr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsegreaterr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestEquald16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparseequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestEqualx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparseequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestEquald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparseequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestEquald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparseequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestEquald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparseequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestEquald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparseequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestEqualr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparseequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestEqualr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparseequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestNotequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsenotequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestNotequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsenotequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestNotequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsenotequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestNotequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsenotequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestNotequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsenotequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestNotequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsenotequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestNotequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsenotequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestNotequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsenotequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestAlwaysd16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsealwaysd16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestAlwaysx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsealwaysx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestAlwaysd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsealwaysd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestAlwaysd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsealwaysd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestAlwaysd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsealwaysd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestAlwaysd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsealwaysd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestAlwaysr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsealwaysr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestAlwaysr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparsealwaysr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestNeverd16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparseneverd16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestNeverx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparseneverx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestNeverd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparseneverd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestNeverd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparseneverd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestNeverd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparseneverd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestNeverd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparseneverd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestNeverr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparseneverr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestNeverr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmapnearestSparseneverr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_nearest.sparse_never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearLessorequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparselessorequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearLessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparselessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearLessorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparselessorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearLessorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparselessorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearLessorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparselessorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearLessorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparselessorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearLessorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparselessorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearLessorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparselessorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearGreaterorequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsegreaterorequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearGreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsegreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearGreaterorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsegreaterorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearGreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsegreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearGreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsegreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearGreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsegreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearGreaterorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsegreaterorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearGreaterorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsegreaterorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearLessd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparselessd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearLessx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparselessx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearLessd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparselessd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearLessd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparselessd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearLessd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparselessd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearLessd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparselessd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearLessr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparselessr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearLessr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparselessr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearGreaterd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsegreaterd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearGreaterx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsegreaterx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearGreaterd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsegreaterd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearGreaterd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsegreaterd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearGreaterd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsegreaterd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearGreaterd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsegreaterd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearGreaterr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsegreaterr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearGreaterr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsegreaterr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearEquald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparseequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearEqualx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparseequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearEquald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparseequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearEquald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparseequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearEquald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparseequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearEquald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparseequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearEqualr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparseequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearEqualr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparseequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearNotequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsenotequald16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearNotequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsenotequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearNotequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsenotequald32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearNotequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsenotequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearNotequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsenotequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearNotequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsenotequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearNotequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsenotequalr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearNotequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsenotequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearAlwaysd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsealwaysd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearAlwaysx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsealwaysx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearAlwaysd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsealwaysd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearAlwaysd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsealwaysd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearAlwaysd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsealwaysd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearAlwaysd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsealwaysd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearAlwaysr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsealwaysr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearAlwaysr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparsealwaysr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearNeverd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparseneverd16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearNeverx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparseneverx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearNeverd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparseneverd32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearNeverd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparseneverd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearNeverd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparseneverd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearNeverd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparseneverd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearNeverr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparseneverr16unorm, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearNeverr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayNearestmipmaplinearSparseneverr32sfloat, "dEQP-VK.texture.shadow.2d_array.nearest_mipmap_linear.sparse_never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearLessorequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparselessorequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearLessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparselessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearLessorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparselessorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearLessorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparselessorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearLessorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparselessorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearLessorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparselessorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearLessorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparselessorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearLessorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparselessorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearGreaterorequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsegreaterorequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearGreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsegreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearGreaterorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsegreaterorequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearGreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsegreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearGreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsegreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearGreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsegreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearGreaterorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsegreaterorequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearGreaterorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsegreaterorequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearLessd16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparselessd16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearLessx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparselessx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearLessd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparselessd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearLessd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparselessd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearLessd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparselessd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearLessd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparselessd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearLessr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparselessr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearLessr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparselessr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearGreaterd16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsegreaterd16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearGreaterx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsegreaterx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearGreaterd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsegreaterd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearGreaterd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsegreaterd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearGreaterd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsegreaterd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearGreaterd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsegreaterd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearGreaterr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsegreaterr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearGreaterr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsegreaterr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearEquald16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparseequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearEqualx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparseequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearEquald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparseequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearEquald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparseequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearEquald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparseequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearEquald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparseequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearEqualr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparseequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearEqualr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparseequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearNotequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsenotequald16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearNotequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsenotequalx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearNotequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsenotequald32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearNotequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsenotequald16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearNotequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsenotequald24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearNotequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsenotequald32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearNotequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsenotequalr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearNotequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsenotequalr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearAlwaysd16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsealwaysd16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearAlwaysx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsealwaysx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearAlwaysd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsealwaysd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearAlwaysd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsealwaysd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearAlwaysd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsealwaysd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearAlwaysd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsealwaysd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearAlwaysr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsealwaysr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearAlwaysr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparsealwaysr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearNeverd16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparseneverd16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearNeverx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparseneverx8d24unormpack32, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearNeverd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparseneverd32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearNeverd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparseneverd16unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearNeverd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparseneverd24unorms8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearNeverd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparseneverd32sfloats8uint, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearNeverr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparseneverr16unorm, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearNeverr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC2darrayLinearmipmaplinearSparseneverr32sfloat, "dEQP-VK.texture.shadow.2d_array.linear_mipmap_linear.sparse_never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestLessorequald16unorm, "dEQP-VK.texture.shadow.1d.nearest.less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparselessorequald16unorm, "dEQP-VK.texture.shadow.1d.nearest.sparse_less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestLessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest.less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparselessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest.sparse_less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestLessorequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest.less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparselessorequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest.sparse_less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestLessorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparselessorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestLessorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparselessorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestLessorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest.less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparselessorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestLessorequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest.less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparselessorequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest.sparse_less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestLessorequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest.less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparselessorequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest.sparse_less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestGreaterorequald16unorm, "dEQP-VK.texture.shadow.1d.nearest.greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsegreaterorequald16unorm, "dEQP-VK.texture.shadow.1d.nearest.sparse_greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestGreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest.greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsegreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest.sparse_greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestGreaterorequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest.greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsegreaterorequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest.sparse_greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestGreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsegreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestGreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsegreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestGreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest.greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsegreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestGreaterorequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest.greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsegreaterorequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest.sparse_greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestGreaterorequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest.greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsegreaterorequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest.sparse_greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestLessd16unorm, "dEQP-VK.texture.shadow.1d.nearest.less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparselessd16unorm, "dEQP-VK.texture.shadow.1d.nearest.sparse_less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestLessx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest.less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparselessx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest.sparse_less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestLessd32sfloat, "dEQP-VK.texture.shadow.1d.nearest.less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparselessd32sfloat, "dEQP-VK.texture.shadow.1d.nearest.sparse_less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestLessd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparselessd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestLessd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparselessd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestLessd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest.less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparselessd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestLessr16unorm, "dEQP-VK.texture.shadow.1d.nearest.less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparselessr16unorm, "dEQP-VK.texture.shadow.1d.nearest.sparse_less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestLessr32sfloat, "dEQP-VK.texture.shadow.1d.nearest.less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparselessr32sfloat, "dEQP-VK.texture.shadow.1d.nearest.sparse_less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestGreaterd16unorm, "dEQP-VK.texture.shadow.1d.nearest.greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsegreaterd16unorm, "dEQP-VK.texture.shadow.1d.nearest.sparse_greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestGreaterx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest.greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsegreaterx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest.sparse_greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestGreaterd32sfloat, "dEQP-VK.texture.shadow.1d.nearest.greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsegreaterd32sfloat, "dEQP-VK.texture.shadow.1d.nearest.sparse_greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestGreaterd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsegreaterd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestGreaterd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsegreaterd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestGreaterd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest.greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsegreaterd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestGreaterr16unorm, "dEQP-VK.texture.shadow.1d.nearest.greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsegreaterr16unorm, "dEQP-VK.texture.shadow.1d.nearest.sparse_greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestGreaterr32sfloat, "dEQP-VK.texture.shadow.1d.nearest.greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsegreaterr32sfloat, "dEQP-VK.texture.shadow.1d.nearest.sparse_greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestEquald16unorm, "dEQP-VK.texture.shadow.1d.nearest.equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparseequald16unorm, "dEQP-VK.texture.shadow.1d.nearest.sparse_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestEqualx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest.equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparseequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest.sparse_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestEquald32sfloat, "dEQP-VK.texture.shadow.1d.nearest.equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparseequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest.sparse_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestEquald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparseequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestEquald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparseequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestEquald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest.equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparseequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestEqualr16unorm, "dEQP-VK.texture.shadow.1d.nearest.equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparseequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest.sparse_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestEqualr32sfloat, "dEQP-VK.texture.shadow.1d.nearest.equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparseequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest.sparse_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestNotequald16unorm, "dEQP-VK.texture.shadow.1d.nearest.not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsenotequald16unorm, "dEQP-VK.texture.shadow.1d.nearest.sparse_not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestNotequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest.not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsenotequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest.sparse_not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestNotequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest.not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsenotequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest.sparse_not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestNotequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsenotequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestNotequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsenotequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestNotequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest.not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsenotequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestNotequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest.not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsenotequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest.sparse_not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestNotequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest.not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsenotequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest.sparse_not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestAlwaysd16unorm, "dEQP-VK.texture.shadow.1d.nearest.always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsealwaysd16unorm, "dEQP-VK.texture.shadow.1d.nearest.sparse_always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestAlwaysx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest.always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsealwaysx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest.sparse_always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestAlwaysd32sfloat, "dEQP-VK.texture.shadow.1d.nearest.always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsealwaysd32sfloat, "dEQP-VK.texture.shadow.1d.nearest.sparse_always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestAlwaysd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsealwaysd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestAlwaysd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsealwaysd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestAlwaysd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest.always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsealwaysd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestAlwaysr16unorm, "dEQP-VK.texture.shadow.1d.nearest.always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsealwaysr16unorm, "dEQP-VK.texture.shadow.1d.nearest.sparse_always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestAlwaysr32sfloat, "dEQP-VK.texture.shadow.1d.nearest.always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparsealwaysr32sfloat, "dEQP-VK.texture.shadow.1d.nearest.sparse_always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestNeverd16unorm, "dEQP-VK.texture.shadow.1d.nearest.never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparseneverd16unorm, "dEQP-VK.texture.shadow.1d.nearest.sparse_never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestNeverx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest.never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparseneverx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest.sparse_never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestNeverd32sfloat, "dEQP-VK.texture.shadow.1d.nearest.never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparseneverd32sfloat, "dEQP-VK.texture.shadow.1d.nearest.sparse_never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestNeverd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparseneverd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestNeverd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparseneverd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestNeverd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest.never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparseneverd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest.sparse_never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestNeverr16unorm, "dEQP-VK.texture.shadow.1d.nearest.never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparseneverr16unorm, "dEQP-VK.texture.shadow.1d.nearest.sparse_never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestNeverr32sfloat, "dEQP-VK.texture.shadow.1d.nearest.never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestSparseneverr32sfloat, "dEQP-VK.texture.shadow.1d.nearest.sparse_never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearLessorequald16unorm, "dEQP-VK.texture.shadow.1d.linear.less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparselessorequald16unorm, "dEQP-VK.texture.shadow.1d.linear.sparse_less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearLessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear.less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparselessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear.sparse_less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearLessorequald32sfloat, "dEQP-VK.texture.shadow.1d.linear.less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparselessorequald32sfloat, "dEQP-VK.texture.shadow.1d.linear.sparse_less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearLessorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear.less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparselessorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearLessorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear.less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparselessorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearLessorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear.less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparselessorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearLessorequalr16unorm, "dEQP-VK.texture.shadow.1d.linear.less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparselessorequalr16unorm, "dEQP-VK.texture.shadow.1d.linear.sparse_less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearLessorequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear.less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparselessorequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear.sparse_less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearGreaterorequald16unorm, "dEQP-VK.texture.shadow.1d.linear.greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsegreaterorequald16unorm, "dEQP-VK.texture.shadow.1d.linear.sparse_greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearGreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear.greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsegreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear.sparse_greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearGreaterorequald32sfloat, "dEQP-VK.texture.shadow.1d.linear.greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsegreaterorequald32sfloat, "dEQP-VK.texture.shadow.1d.linear.sparse_greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearGreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear.greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsegreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearGreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear.greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsegreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearGreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear.greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsegreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearGreaterorequalr16unorm, "dEQP-VK.texture.shadow.1d.linear.greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsegreaterorequalr16unorm, "dEQP-VK.texture.shadow.1d.linear.sparse_greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearGreaterorequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear.greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsegreaterorequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear.sparse_greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearLessd16unorm, "dEQP-VK.texture.shadow.1d.linear.less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparselessd16unorm, "dEQP-VK.texture.shadow.1d.linear.sparse_less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearLessx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear.less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparselessx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear.sparse_less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearLessd32sfloat, "dEQP-VK.texture.shadow.1d.linear.less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparselessd32sfloat, "dEQP-VK.texture.shadow.1d.linear.sparse_less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearLessd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear.less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparselessd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearLessd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear.less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparselessd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearLessd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear.less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparselessd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearLessr16unorm, "dEQP-VK.texture.shadow.1d.linear.less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparselessr16unorm, "dEQP-VK.texture.shadow.1d.linear.sparse_less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearLessr32sfloat, "dEQP-VK.texture.shadow.1d.linear.less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparselessr32sfloat, "dEQP-VK.texture.shadow.1d.linear.sparse_less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearGreaterd16unorm, "dEQP-VK.texture.shadow.1d.linear.greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsegreaterd16unorm, "dEQP-VK.texture.shadow.1d.linear.sparse_greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearGreaterx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear.greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsegreaterx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear.sparse_greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearGreaterd32sfloat, "dEQP-VK.texture.shadow.1d.linear.greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsegreaterd32sfloat, "dEQP-VK.texture.shadow.1d.linear.sparse_greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearGreaterd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear.greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsegreaterd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearGreaterd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear.greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsegreaterd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearGreaterd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear.greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsegreaterd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearGreaterr16unorm, "dEQP-VK.texture.shadow.1d.linear.greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsegreaterr16unorm, "dEQP-VK.texture.shadow.1d.linear.sparse_greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearGreaterr32sfloat, "dEQP-VK.texture.shadow.1d.linear.greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsegreaterr32sfloat, "dEQP-VK.texture.shadow.1d.linear.sparse_greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearEquald16unorm, "dEQP-VK.texture.shadow.1d.linear.equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparseequald16unorm, "dEQP-VK.texture.shadow.1d.linear.sparse_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearEqualx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear.equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparseequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear.sparse_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearEquald32sfloat, "dEQP-VK.texture.shadow.1d.linear.equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparseequald32sfloat, "dEQP-VK.texture.shadow.1d.linear.sparse_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearEquald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear.equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparseequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearEquald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear.equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparseequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearEquald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear.equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparseequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearEqualr16unorm, "dEQP-VK.texture.shadow.1d.linear.equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparseequalr16unorm, "dEQP-VK.texture.shadow.1d.linear.sparse_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearEqualr32sfloat, "dEQP-VK.texture.shadow.1d.linear.equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparseequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear.sparse_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearNotequald16unorm, "dEQP-VK.texture.shadow.1d.linear.not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsenotequald16unorm, "dEQP-VK.texture.shadow.1d.linear.sparse_not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearNotequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear.not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsenotequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear.sparse_not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearNotequald32sfloat, "dEQP-VK.texture.shadow.1d.linear.not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsenotequald32sfloat, "dEQP-VK.texture.shadow.1d.linear.sparse_not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearNotequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear.not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsenotequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearNotequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear.not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsenotequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearNotequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear.not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsenotequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearNotequalr16unorm, "dEQP-VK.texture.shadow.1d.linear.not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsenotequalr16unorm, "dEQP-VK.texture.shadow.1d.linear.sparse_not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearNotequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear.not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsenotequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear.sparse_not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearAlwaysd16unorm, "dEQP-VK.texture.shadow.1d.linear.always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsealwaysd16unorm, "dEQP-VK.texture.shadow.1d.linear.sparse_always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearAlwaysx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear.always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsealwaysx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear.sparse_always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearAlwaysd32sfloat, "dEQP-VK.texture.shadow.1d.linear.always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsealwaysd32sfloat, "dEQP-VK.texture.shadow.1d.linear.sparse_always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearAlwaysd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear.always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsealwaysd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearAlwaysd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear.always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsealwaysd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearAlwaysd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear.always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsealwaysd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearAlwaysr16unorm, "dEQP-VK.texture.shadow.1d.linear.always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsealwaysr16unorm, "dEQP-VK.texture.shadow.1d.linear.sparse_always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearAlwaysr32sfloat, "dEQP-VK.texture.shadow.1d.linear.always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparsealwaysr32sfloat, "dEQP-VK.texture.shadow.1d.linear.sparse_always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearNeverd16unorm, "dEQP-VK.texture.shadow.1d.linear.never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparseneverd16unorm, "dEQP-VK.texture.shadow.1d.linear.sparse_never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearNeverx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear.never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparseneverx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear.sparse_never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearNeverd32sfloat, "dEQP-VK.texture.shadow.1d.linear.never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparseneverd32sfloat, "dEQP-VK.texture.shadow.1d.linear.sparse_never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearNeverd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear.never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparseneverd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearNeverd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear.never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparseneverd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearNeverd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear.never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparseneverd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear.sparse_never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearNeverr16unorm, "dEQP-VK.texture.shadow.1d.linear.never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparseneverr16unorm, "dEQP-VK.texture.shadow.1d.linear.sparse_never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearNeverr32sfloat, "dEQP-VK.texture.shadow.1d.linear.never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearSparseneverr32sfloat, "dEQP-VK.texture.shadow.1d.linear.sparse_never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestLessorequald16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparselessorequald16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestLessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparselessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestLessorequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparselessorequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestLessorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparselessorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestLessorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparselessorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestLessorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparselessorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestLessorequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparselessorequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestLessorequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparselessorequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestGreaterorequald16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsegreaterorequald16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestGreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsegreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestGreaterorequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsegreaterorequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestGreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsegreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestGreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsegreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestGreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsegreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestGreaterorequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsegreaterorequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestGreaterorequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsegreaterorequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestLessd16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparselessd16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestLessx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparselessx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestLessd32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparselessd32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestLessd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparselessd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestLessd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparselessd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestLessd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparselessd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestLessr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparselessr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestLessr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparselessr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestGreaterd16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsegreaterd16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestGreaterx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsegreaterx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestGreaterd32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsegreaterd32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestGreaterd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsegreaterd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestGreaterd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsegreaterd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestGreaterd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsegreaterd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestGreaterr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsegreaterr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestGreaterr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsegreaterr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestEquald16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparseequald16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestEqualx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparseequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestEquald32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparseequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestEquald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparseequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestEquald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparseequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestEquald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparseequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestEqualr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparseequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestEqualr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparseequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestNotequald16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsenotequald16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestNotequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsenotequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestNotequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsenotequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestNotequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsenotequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestNotequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsenotequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestNotequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsenotequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestNotequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsenotequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestNotequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsenotequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestAlwaysd16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsealwaysd16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestAlwaysx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsealwaysx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestAlwaysd32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsealwaysd32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestAlwaysd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsealwaysd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestAlwaysd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsealwaysd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestAlwaysd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsealwaysd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestAlwaysr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsealwaysr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestAlwaysr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparsealwaysr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestNeverd16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparseneverd16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestNeverx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparseneverx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestNeverd32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparseneverd32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestNeverd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparseneverd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestNeverd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparseneverd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestNeverd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparseneverd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestNeverr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparseneverr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestNeverr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmapnearestSparseneverr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_nearest.sparse_never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestLessorequald16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparselessorequald16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestLessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparselessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestLessorequald32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparselessorequald32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestLessorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparselessorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestLessorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparselessorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestLessorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparselessorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestLessorequalr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparselessorequalr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestLessorequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparselessorequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestGreaterorequald16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsegreaterorequald16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestGreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsegreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestGreaterorequald32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsegreaterorequald32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestGreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsegreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestGreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsegreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestGreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsegreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestGreaterorequalr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsegreaterorequalr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestGreaterorequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsegreaterorequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestLessd16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparselessd16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestLessx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparselessx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestLessd32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparselessd32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestLessd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparselessd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestLessd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparselessd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestLessd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparselessd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestLessr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparselessr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestLessr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparselessr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestGreaterd16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsegreaterd16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestGreaterx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsegreaterx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestGreaterd32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsegreaterd32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestGreaterd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsegreaterd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestGreaterd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsegreaterd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestGreaterd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsegreaterd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestGreaterr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsegreaterr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestGreaterr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsegreaterr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestEquald16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparseequald16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestEqualx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparseequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestEquald32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparseequald32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestEquald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparseequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestEquald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparseequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestEquald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparseequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestEqualr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparseequalr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestEqualr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparseequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestNotequald16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsenotequald16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestNotequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsenotequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestNotequald32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsenotequald32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestNotequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsenotequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestNotequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsenotequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestNotequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsenotequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestNotequalr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsenotequalr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestNotequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsenotequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestAlwaysd16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsealwaysd16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestAlwaysx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsealwaysx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestAlwaysd32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsealwaysd32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestAlwaysd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsealwaysd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestAlwaysd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsealwaysd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestAlwaysd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsealwaysd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestAlwaysr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsealwaysr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestAlwaysr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparsealwaysr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestNeverd16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparseneverd16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestNeverx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparseneverx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestNeverd32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparseneverd32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestNeverd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparseneverd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestNeverd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparseneverd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestNeverd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparseneverd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestNeverr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparseneverr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestNeverr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmapnearestSparseneverr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_nearest.sparse_never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearLessorequald16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparselessorequald16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearLessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparselessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearLessorequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparselessorequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearLessorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparselessorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearLessorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparselessorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearLessorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparselessorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearLessorequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparselessorequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearLessorequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparselessorequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearGreaterorequald16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsegreaterorequald16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearGreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsegreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearGreaterorequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsegreaterorequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearGreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsegreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearGreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsegreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearGreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsegreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearGreaterorequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsegreaterorequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearGreaterorequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsegreaterorequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearLessd16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparselessd16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearLessx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparselessx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearLessd32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparselessd32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearLessd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparselessd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearLessd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparselessd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearLessd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparselessd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearLessr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparselessr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearLessr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparselessr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearGreaterd16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsegreaterd16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearGreaterx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsegreaterx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearGreaterd32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsegreaterd32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearGreaterd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsegreaterd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearGreaterd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsegreaterd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearGreaterd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsegreaterd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearGreaterr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsegreaterr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearGreaterr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsegreaterr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearEquald16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparseequald16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearEqualx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparseequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearEquald32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparseequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearEquald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparseequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearEquald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparseequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearEquald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparseequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearEqualr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparseequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearEqualr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparseequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearNotequald16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsenotequald16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearNotequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsenotequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearNotequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsenotequald32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearNotequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsenotequald16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearNotequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsenotequald24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearNotequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsenotequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearNotequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsenotequalr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearNotequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsenotequalr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearAlwaysd16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsealwaysd16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearAlwaysx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsealwaysx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearAlwaysd32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsealwaysd32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearAlwaysd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsealwaysd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearAlwaysd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsealwaysd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearAlwaysd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsealwaysd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearAlwaysr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsealwaysr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearAlwaysr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparsealwaysr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearNeverd16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparseneverd16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearNeverx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparseneverx8d24unormpack32, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearNeverd32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparseneverd32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearNeverd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparseneverd16unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearNeverd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparseneverd24unorms8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearNeverd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparseneverd32sfloats8uint, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearNeverr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparseneverr16unorm, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearNeverr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dNearestmipmaplinearSparseneverr32sfloat, "dEQP-VK.texture.shadow.1d.nearest_mipmap_linear.sparse_never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearLessorequald16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparselessorequald16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearLessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparselessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearLessorequald32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparselessorequald32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearLessorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparselessorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearLessorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparselessorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearLessorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparselessorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearLessorequalr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparselessorequalr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearLessorequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparselessorequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearGreaterorequald16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsegreaterorequald16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearGreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsegreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearGreaterorequald32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsegreaterorequald32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearGreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsegreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearGreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsegreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearGreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsegreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearGreaterorequalr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsegreaterorequalr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearGreaterorequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsegreaterorequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearLessd16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparselessd16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearLessx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparselessx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearLessd32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparselessd32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearLessd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparselessd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearLessd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparselessd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearLessd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparselessd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearLessr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparselessr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearLessr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparselessr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearGreaterd16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsegreaterd16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearGreaterx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsegreaterx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearGreaterd32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsegreaterd32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearGreaterd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsegreaterd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearGreaterd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsegreaterd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearGreaterd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsegreaterd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearGreaterr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsegreaterr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearGreaterr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsegreaterr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearEquald16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparseequald16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearEqualx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparseequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearEquald32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparseequald32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearEquald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparseequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearEquald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparseequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearEquald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparseequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearEqualr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparseequalr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearEqualr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparseequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearNotequald16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsenotequald16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearNotequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsenotequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearNotequald32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsenotequald32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearNotequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsenotequald16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearNotequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsenotequald24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearNotequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsenotequald32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearNotequalr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsenotequalr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearNotequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsenotequalr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearAlwaysd16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsealwaysd16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearAlwaysx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsealwaysx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearAlwaysd32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsealwaysd32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearAlwaysd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsealwaysd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearAlwaysd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsealwaysd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearAlwaysd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsealwaysd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearAlwaysr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsealwaysr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearAlwaysr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparsealwaysr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearNeverd16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparseneverd16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearNeverx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparseneverx8d24unormpack32, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearNeverd32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparseneverd32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearNeverd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparseneverd16unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearNeverd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparseneverd24unorms8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearNeverd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparseneverd32sfloats8uint, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearNeverr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparseneverr16unorm, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearNeverr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1dLinearmipmaplinearSparseneverr32sfloat, "dEQP-VK.texture.shadow.1d.linear_mipmap_linear.sparse_never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestLessorequald16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparselessorequald16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestLessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.nearest.less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparselessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestLessorequald32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparselessorequald32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestLessorequald16unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparselessorequald16unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestLessorequald24unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparselessorequald24unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestLessorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.nearest.less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparselessorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestLessorequalr16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparselessorequalr16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestLessorequalr32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparselessorequalr32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestGreaterorequald16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsegreaterorequald16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestGreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.nearest.greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsegreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestGreaterorequald32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsegreaterorequald32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestGreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsegreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestGreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsegreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestGreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.nearest.greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsegreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestGreaterorequalr16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsegreaterorequalr16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestGreaterorequalr32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsegreaterorequalr32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestLessd16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparselessd16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestLessx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.nearest.less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparselessx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestLessd32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparselessd32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestLessd16unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparselessd16unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestLessd24unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparselessd24unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestLessd32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.nearest.less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparselessd32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestLessr16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparselessr16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestLessr32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparselessr32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestGreaterd16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsegreaterd16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestGreaterx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.nearest.greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsegreaterx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestGreaterd32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsegreaterd32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestGreaterd16unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsegreaterd16unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestGreaterd24unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsegreaterd24unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestGreaterd32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.nearest.greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsegreaterd32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestGreaterr16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsegreaterr16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestGreaterr32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsegreaterr32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestEquald16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparseequald16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestEqualx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.nearest.equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparseequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestEquald32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparseequald32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestEquald16unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparseequald16unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestEquald24unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparseequald24unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestEquald32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.nearest.equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparseequald32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestEqualr16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparseequalr16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestEqualr32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparseequalr32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestNotequald16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsenotequald16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestNotequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.nearest.not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsenotequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestNotequald32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsenotequald32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestNotequald16unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsenotequald16unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestNotequald24unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsenotequald24unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestNotequald32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.nearest.not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsenotequald32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestNotequalr16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsenotequalr16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestNotequalr32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsenotequalr32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestAlwaysd16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsealwaysd16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestAlwaysx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.nearest.always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsealwaysx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestAlwaysd32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsealwaysd32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestAlwaysd16unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsealwaysd16unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestAlwaysd24unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsealwaysd24unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestAlwaysd32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.nearest.always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsealwaysd32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestAlwaysr16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsealwaysr16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestAlwaysr32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparsealwaysr32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestNeverd16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparseneverd16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestNeverx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.nearest.never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparseneverx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestNeverd32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparseneverd32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestNeverd16unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparseneverd16unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestNeverd24unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparseneverd24unorms8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestNeverd32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.nearest.never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparseneverd32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestNeverr16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparseneverr16unorm, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestNeverr32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayNearestSparseneverr32sfloat, "dEQP-VK.texture.shadow.1d_array.nearest.sparse_never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearLessorequald16unorm, "dEQP-VK.texture.shadow.1d_array.linear.less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparselessorequald16unorm, "dEQP-VK.texture.shadow.1d_array.linear.sparse_less_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearLessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.linear.less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparselessorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.linear.sparse_less_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearLessorequald32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparselessorequald32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.sparse_less_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearLessorequald16unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparselessorequald16unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_less_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearLessorequald24unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparselessorequald24unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_less_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearLessorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.linear.less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparselessorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_less_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearLessorequalr16unorm, "dEQP-VK.texture.shadow.1d_array.linear.less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparselessorequalr16unorm, "dEQP-VK.texture.shadow.1d_array.linear.sparse_less_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearLessorequalr32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparselessorequalr32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.sparse_less_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearGreaterorequald16unorm, "dEQP-VK.texture.shadow.1d_array.linear.greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsegreaterorequald16unorm, "dEQP-VK.texture.shadow.1d_array.linear.sparse_greater_or_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearGreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.linear.greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsegreaterorequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.linear.sparse_greater_or_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearGreaterorequald32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsegreaterorequald32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.sparse_greater_or_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearGreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsegreaterorequald16unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_greater_or_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearGreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsegreaterorequald24unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_greater_or_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearGreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.linear.greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsegreaterorequald32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_greater_or_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearGreaterorequalr16unorm, "dEQP-VK.texture.shadow.1d_array.linear.greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsegreaterorequalr16unorm, "dEQP-VK.texture.shadow.1d_array.linear.sparse_greater_or_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearGreaterorequalr32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsegreaterorequalr32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.sparse_greater_or_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearLessd16unorm, "dEQP-VK.texture.shadow.1d_array.linear.less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparselessd16unorm, "dEQP-VK.texture.shadow.1d_array.linear.sparse_less_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearLessx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.linear.less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparselessx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.linear.sparse_less_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearLessd32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparselessd32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.sparse_less_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearLessd16unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparselessd16unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_less_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearLessd24unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparselessd24unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_less_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearLessd32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.linear.less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparselessd32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_less_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearLessr16unorm, "dEQP-VK.texture.shadow.1d_array.linear.less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparselessr16unorm, "dEQP-VK.texture.shadow.1d_array.linear.sparse_less_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearLessr32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparselessr32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.sparse_less_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearGreaterd16unorm, "dEQP-VK.texture.shadow.1d_array.linear.greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsegreaterd16unorm, "dEQP-VK.texture.shadow.1d_array.linear.sparse_greater_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearGreaterx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.linear.greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsegreaterx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.linear.sparse_greater_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearGreaterd32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsegreaterd32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.sparse_greater_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearGreaterd16unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsegreaterd16unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_greater_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearGreaterd24unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsegreaterd24unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_greater_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearGreaterd32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.linear.greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsegreaterd32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_greater_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearGreaterr16unorm, "dEQP-VK.texture.shadow.1d_array.linear.greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsegreaterr16unorm, "dEQP-VK.texture.shadow.1d_array.linear.sparse_greater_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearGreaterr32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsegreaterr32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.sparse_greater_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearEquald16unorm, "dEQP-VK.texture.shadow.1d_array.linear.equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparseequald16unorm, "dEQP-VK.texture.shadow.1d_array.linear.sparse_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearEqualx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.linear.equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparseequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.linear.sparse_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearEquald32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparseequald32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.sparse_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearEquald16unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparseequald16unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearEquald24unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparseequald24unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearEquald32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.linear.equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparseequald32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearEqualr16unorm, "dEQP-VK.texture.shadow.1d_array.linear.equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparseequalr16unorm, "dEQP-VK.texture.shadow.1d_array.linear.sparse_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearEqualr32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparseequalr32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.sparse_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearNotequald16unorm, "dEQP-VK.texture.shadow.1d_array.linear.not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsenotequald16unorm, "dEQP-VK.texture.shadow.1d_array.linear.sparse_not_equal_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearNotequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.linear.not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsenotequalx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.linear.sparse_not_equal_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearNotequald32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsenotequald32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.sparse_not_equal_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearNotequald16unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsenotequald16unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_not_equal_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearNotequald24unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsenotequald24unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_not_equal_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearNotequald32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.linear.not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsenotequald32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_not_equal_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearNotequalr16unorm, "dEQP-VK.texture.shadow.1d_array.linear.not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsenotequalr16unorm, "dEQP-VK.texture.shadow.1d_array.linear.sparse_not_equal_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearNotequalr32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsenotequalr32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.sparse_not_equal_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearAlwaysd16unorm, "dEQP-VK.texture.shadow.1d_array.linear.always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsealwaysd16unorm, "dEQP-VK.texture.shadow.1d_array.linear.sparse_always_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearAlwaysx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.linear.always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsealwaysx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.linear.sparse_always_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearAlwaysd32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsealwaysd32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.sparse_always_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearAlwaysd16unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsealwaysd16unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_always_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearAlwaysd24unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsealwaysd24unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_always_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearAlwaysd32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.linear.always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsealwaysd32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_always_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearAlwaysr16unorm, "dEQP-VK.texture.shadow.1d_array.linear.always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsealwaysr16unorm, "dEQP-VK.texture.shadow.1d_array.linear.sparse_always_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearAlwaysr32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparsealwaysr32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.sparse_always_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearNeverd16unorm, "dEQP-VK.texture.shadow.1d_array.linear.never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparseneverd16unorm, "dEQP-VK.texture.shadow.1d_array.linear.sparse_never_d16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearNeverx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.linear.never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparseneverx8d24unormpack32, "dEQP-VK.texture.shadow.1d_array.linear.sparse_never_x8_d24_unorm_pack32*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearNeverd32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparseneverd32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.sparse_never_d32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearNeverd16unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparseneverd16unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_never_d16_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearNeverd24unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparseneverd24unorms8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_never_d24_unorm_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearNeverd32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.linear.never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparseneverd32sfloats8uint, "dEQP-VK.texture.shadow.1d_array.linear.sparse_never_d32_sfloat_s8_uint*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearNeverr16unorm, "dEQP-VK.texture.shadow.1d_array.linear.never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparseneverr16unorm, "dEQP-VK.texture.shadow.1d_array.linear.sparse_never_r16_unorm*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearNeverr32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.never_r32_sfloat*"); +static SHRINK_HWTEST_F(ActsTexture0002TS, TC1darrayLinearSparseneverr32sfloat, "dEQP-VK.texture.shadow.1d_array.linear.sparse_never_r32_sfloat*"); -- GitLab