1/* 2 * Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16#include <climits> 17#include <gtest/gtest.h> 18#include "../Deqpgles3BaseFunc.h" 19#include "../ActsDeqpgles30025TestSuite.h" 20#include "shrinkdefine.h" 21 22using namespace std; 23using namespace testing::ext; 24using namespace OHOS; 25 26static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024001, 27 "dEQP-GLES3.functional.texture.filtering.2", 28 "d.combinations.nearest_nearest_clamp_clamp"); 29 30static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024002, 31 "dEQP-GLES3.functional.texture.filtering.2d", 32 ".combinations.nearest_nearest_clamp_repeat"); 33 34static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024003, 35 "dEQP-GLES3.functional.texture.filtering.2d", 36 ".combinations.nearest_nearest_clamp_mirror"); 37 38static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024004, 39 "dEQP-GLES3.functional.texture.filtering.2d", 40 ".combinations.nearest_nearest_repeat_clamp"); 41 42static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024005, 43 "dEQP-GLES3.functional.texture.filtering.2d", 44 ".combinations.nearest_nearest_repeat_repeat"); 45 46static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024006, 47 "dEQP-GLES3.functional.texture.filtering.2d", 48 ".combinations.nearest_nearest_repeat_mirror"); 49 50static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024007, 51 "dEQP-GLES3.functional.texture.filtering.2d", 52 ".combinations.nearest_nearest_mirror_clamp"); 53 54static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024008, 55 "dEQP-GLES3.functional.texture.filtering.2d", 56 ".combinations.nearest_nearest_mirror_repeat"); 57 58static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024009, 59 "dEQP-GLES3.functional.texture.filtering.2d", 60 ".combinations.nearest_nearest_mirror_mirror"); 61 62static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024010, 63 "dEQP-GLES3.functional.texture.filtering.2", 64 "d.combinations.nearest_linear_clamp_clamp"); 65 66static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024011, 67 "dEQP-GLES3.functional.texture.filtering.2", 68 "d.combinations.nearest_linear_clamp_repeat"); 69 70static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024012, 71 "dEQP-GLES3.functional.texture.filtering.2", 72 "d.combinations.nearest_linear_clamp_mirror"); 73 74static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024013, 75 "dEQP-GLES3.functional.texture.filtering.2", 76 "d.combinations.nearest_linear_repeat_clamp"); 77 78static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024014, 79 "dEQP-GLES3.functional.texture.filtering.2d", 80 ".combinations.nearest_linear_repeat_repeat"); 81 82static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024015, 83 "dEQP-GLES3.functional.texture.filtering.2d", 84 ".combinations.nearest_linear_repeat_mirror"); 85 86static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024016, 87 "dEQP-GLES3.functional.texture.filtering.2", 88 "d.combinations.nearest_linear_mirror_clamp"); 89 90static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024017, 91 "dEQP-GLES3.functional.texture.filtering.2d", 92 ".combinations.nearest_linear_mirror_repeat"); 93 94static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024018, 95 "dEQP-GLES3.functional.texture.filtering.2d", 96 ".combinations.nearest_linear_mirror_mirror"); 97 98static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024019, 99 "dEQP-GLES3.functional.texture.filtering.2", 100 "d.combinations.linear_nearest_clamp_clamp"); 101 102static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024020, 103 "dEQP-GLES3.functional.texture.filtering.2", 104 "d.combinations.linear_nearest_clamp_repeat"); 105 106static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024021, 107 "dEQP-GLES3.functional.texture.filtering.2", 108 "d.combinations.linear_nearest_clamp_mirror"); 109 110static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024022, 111 "dEQP-GLES3.functional.texture.filtering.2", 112 "d.combinations.linear_nearest_repeat_clamp"); 113 114static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024023, 115 "dEQP-GLES3.functional.texture.filtering.2d", 116 ".combinations.linear_nearest_repeat_repeat"); 117 118static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024024, 119 "dEQP-GLES3.functional.texture.filtering.2d", 120 ".combinations.linear_nearest_repeat_mirror"); 121 122static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024025, 123 "dEQP-GLES3.functional.texture.filtering.2", 124 "d.combinations.linear_nearest_mirror_clamp"); 125 126static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024026, 127 "dEQP-GLES3.functional.texture.filtering.2d", 128 ".combinations.linear_nearest_mirror_repeat"); 129 130static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024027, 131 "dEQP-GLES3.functional.texture.filtering.2d", 132 ".combinations.linear_nearest_mirror_mirror"); 133 134static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024028, 135 "dEQP-GLES3.functional.texture.filtering.", 136 "2d.combinations.linear_linear_clamp_clamp"); 137 138static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024029, 139 "dEQP-GLES3.functional.texture.filtering.2", 140 "d.combinations.linear_linear_clamp_repeat"); 141 142static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024030, 143 "dEQP-GLES3.functional.texture.filtering.2", 144 "d.combinations.linear_linear_clamp_mirror"); 145 146static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024031, 147 "dEQP-GLES3.functional.texture.filtering.2", 148 "d.combinations.linear_linear_repeat_clamp"); 149 150static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024032, 151 "dEQP-GLES3.functional.texture.filtering.2", 152 "d.combinations.linear_linear_repeat_repeat"); 153 154static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024033, 155 "dEQP-GLES3.functional.texture.filtering.2", 156 "d.combinations.linear_linear_repeat_mirror"); 157 158static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024034, 159 "dEQP-GLES3.functional.texture.filtering.2", 160 "d.combinations.linear_linear_mirror_clamp"); 161 162static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024035, 163 "dEQP-GLES3.functional.texture.filtering.2", 164 "d.combinations.linear_linear_mirror_repeat"); 165 166static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024036, 167 "dEQP-GLES3.functional.texture.filtering.2", 168 "d.combinations.linear_linear_mirror_mirror"); 169 170static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024037, 171 "dEQP-GLES3.functional.texture.filtering.2d.combin", 172 "ations.nearest_mipmap_nearest_nearest_clamp_clamp"); 173 174static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024038, 175 "dEQP-GLES3.functional.texture.filtering.2d.combin", 176 "ations.nearest_mipmap_nearest_nearest_clamp_repeat"); 177 178static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024039, 179 "dEQP-GLES3.functional.texture.filtering.2d.combin", 180 "ations.nearest_mipmap_nearest_nearest_clamp_mirror"); 181 182static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024040, 183 "dEQP-GLES3.functional.texture.filtering.2d.combin", 184 "ations.nearest_mipmap_nearest_nearest_repeat_clamp"); 185 186static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024041, 187 "dEQP-GLES3.functional.texture.filtering.2d.combina", 188 "tions.nearest_mipmap_nearest_nearest_repeat_repeat"); 189 190static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024042, 191 "dEQP-GLES3.functional.texture.filtering.2d.combina", 192 "tions.nearest_mipmap_nearest_nearest_repeat_mirror"); 193 194static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024043, 195 "dEQP-GLES3.functional.texture.filtering.2d.combin", 196 "ations.nearest_mipmap_nearest_nearest_mirror_clamp"); 197 198static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024044, 199 "dEQP-GLES3.functional.texture.filtering.2d.combina", 200 "tions.nearest_mipmap_nearest_nearest_mirror_repeat"); 201 202static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024045, 203 "dEQP-GLES3.functional.texture.filtering.2d.combina", 204 "tions.nearest_mipmap_nearest_nearest_mirror_mirror"); 205 206static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024046, 207 "dEQP-GLES3.functional.texture.filtering.2d.combi", 208 "nations.nearest_mipmap_nearest_linear_clamp_clamp"); 209 210static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024047, 211 "dEQP-GLES3.functional.texture.filtering.2d.combin", 212 "ations.nearest_mipmap_nearest_linear_clamp_repeat"); 213 214static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024048, 215 "dEQP-GLES3.functional.texture.filtering.2d.combin", 216 "ations.nearest_mipmap_nearest_linear_clamp_mirror"); 217 218static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024049, 219 "dEQP-GLES3.functional.texture.filtering.2d.combin", 220 "ations.nearest_mipmap_nearest_linear_repeat_clamp"); 221 222static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024050, 223 "dEQP-GLES3.functional.texture.filtering.2d.combin", 224 "ations.nearest_mipmap_nearest_linear_repeat_repeat"); 225 226static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024051, 227 "dEQP-GLES3.functional.texture.filtering.2d.combin", 228 "ations.nearest_mipmap_nearest_linear_repeat_mirror"); 229 230static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024052, 231 "dEQP-GLES3.functional.texture.filtering.2d.combin", 232 "ations.nearest_mipmap_nearest_linear_mirror_clamp"); 233 234static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024053, 235 "dEQP-GLES3.functional.texture.filtering.2d.combin", 236 "ations.nearest_mipmap_nearest_linear_mirror_repeat"); 237 238static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024054, 239 "dEQP-GLES3.functional.texture.filtering.2d.combin", 240 "ations.nearest_mipmap_nearest_linear_mirror_mirror"); 241 242static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024055, 243 "dEQP-GLES3.functional.texture.filtering.2d.combi", 244 "nations.linear_mipmap_nearest_nearest_clamp_clamp"); 245 246static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024056, 247 "dEQP-GLES3.functional.texture.filtering.2d.combin", 248 "ations.linear_mipmap_nearest_nearest_clamp_repeat"); 249 250static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024057, 251 "dEQP-GLES3.functional.texture.filtering.2d.combin", 252 "ations.linear_mipmap_nearest_nearest_clamp_mirror"); 253 254static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024058, 255 "dEQP-GLES3.functional.texture.filtering.2d.combin", 256 "ations.linear_mipmap_nearest_nearest_repeat_clamp"); 257 258static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024059, 259 "dEQP-GLES3.functional.texture.filtering.2d.combin", 260 "ations.linear_mipmap_nearest_nearest_repeat_repeat"); 261 262static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024060, 263 "dEQP-GLES3.functional.texture.filtering.2d.combin", 264 "ations.linear_mipmap_nearest_nearest_repeat_mirror"); 265 266static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024061, 267 "dEQP-GLES3.functional.texture.filtering.2d.combin", 268 "ations.linear_mipmap_nearest_nearest_mirror_clamp"); 269 270static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024062, 271 "dEQP-GLES3.functional.texture.filtering.2d.combin", 272 "ations.linear_mipmap_nearest_nearest_mirror_repeat"); 273 274static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024063, 275 "dEQP-GLES3.functional.texture.filtering.2d.combin", 276 "ations.linear_mipmap_nearest_nearest_mirror_mirror"); 277 278static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024064, 279 "dEQP-GLES3.functional.texture.filtering.2d.combi", 280 "nations.linear_mipmap_nearest_linear_clamp_clamp"); 281 282static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024065, 283 "dEQP-GLES3.functional.texture.filtering.2d.combi", 284 "nations.linear_mipmap_nearest_linear_clamp_repeat"); 285 286static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024066, 287 "dEQP-GLES3.functional.texture.filtering.2d.combi", 288 "nations.linear_mipmap_nearest_linear_clamp_mirror"); 289 290static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024067, 291 "dEQP-GLES3.functional.texture.filtering.2d.combi", 292 "nations.linear_mipmap_nearest_linear_repeat_clamp"); 293 294static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024068, 295 "dEQP-GLES3.functional.texture.filtering.2d.combin", 296 "ations.linear_mipmap_nearest_linear_repeat_repeat"); 297 298static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024069, 299 "dEQP-GLES3.functional.texture.filtering.2d.combin", 300 "ations.linear_mipmap_nearest_linear_repeat_mirror"); 301 302static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024070, 303 "dEQP-GLES3.functional.texture.filtering.2d.combi", 304 "nations.linear_mipmap_nearest_linear_mirror_clamp"); 305 306static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024071, 307 "dEQP-GLES3.functional.texture.filtering.2d.combin", 308 "ations.linear_mipmap_nearest_linear_mirror_repeat"); 309 310static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024072, 311 "dEQP-GLES3.functional.texture.filtering.2d.combin", 312 "ations.linear_mipmap_nearest_linear_mirror_mirror"); 313 314static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024073, 315 "dEQP-GLES3.functional.texture.filtering.2d.combi", 316 "nations.nearest_mipmap_linear_nearest_clamp_clamp"); 317 318static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024074, 319 "dEQP-GLES3.functional.texture.filtering.2d.combin", 320 "ations.nearest_mipmap_linear_nearest_clamp_repeat"); 321 322static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024075, 323 "dEQP-GLES3.functional.texture.filtering.2d.combin", 324 "ations.nearest_mipmap_linear_nearest_clamp_mirror"); 325 326static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024076, 327 "dEQP-GLES3.functional.texture.filtering.2d.combin", 328 "ations.nearest_mipmap_linear_nearest_repeat_clamp"); 329 330static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024077, 331 "dEQP-GLES3.functional.texture.filtering.2d.combin", 332 "ations.nearest_mipmap_linear_nearest_repeat_repeat"); 333 334static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024078, 335 "dEQP-GLES3.functional.texture.filtering.2d.combin", 336 "ations.nearest_mipmap_linear_nearest_repeat_mirror"); 337 338static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024079, 339 "dEQP-GLES3.functional.texture.filtering.2d.combin", 340 "ations.nearest_mipmap_linear_nearest_mirror_clamp"); 341 342static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024080, 343 "dEQP-GLES3.functional.texture.filtering.2d.combin", 344 "ations.nearest_mipmap_linear_nearest_mirror_repeat"); 345 346static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024081, 347 "dEQP-GLES3.functional.texture.filtering.2d.combin", 348 "ations.nearest_mipmap_linear_nearest_mirror_mirror"); 349 350static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024082, 351 "dEQP-GLES3.functional.texture.filtering.2d.combi", 352 "nations.nearest_mipmap_linear_linear_clamp_clamp"); 353 354static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024083, 355 "dEQP-GLES3.functional.texture.filtering.2d.combi", 356 "nations.nearest_mipmap_linear_linear_clamp_repeat"); 357 358static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024084, 359 "dEQP-GLES3.functional.texture.filtering.2d.combi", 360 "nations.nearest_mipmap_linear_linear_clamp_mirror"); 361 362static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024085, 363 "dEQP-GLES3.functional.texture.filtering.2d.combi", 364 "nations.nearest_mipmap_linear_linear_repeat_clamp"); 365 366static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024086, 367 "dEQP-GLES3.functional.texture.filtering.2d.combin", 368 "ations.nearest_mipmap_linear_linear_repeat_repeat"); 369 370static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024087, 371 "dEQP-GLES3.functional.texture.filtering.2d.combin", 372 "ations.nearest_mipmap_linear_linear_repeat_mirror"); 373 374static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024088, 375 "dEQP-GLES3.functional.texture.filtering.2d.combi", 376 "nations.nearest_mipmap_linear_linear_mirror_clamp"); 377 378static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024089, 379 "dEQP-GLES3.functional.texture.filtering.2d.combin", 380 "ations.nearest_mipmap_linear_linear_mirror_repeat"); 381 382static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024090, 383 "dEQP-GLES3.functional.texture.filtering.2d.combin", 384 "ations.nearest_mipmap_linear_linear_mirror_mirror"); 385 386static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024091, 387 "dEQP-GLES3.functional.texture.filtering.2d.combi", 388 "nations.linear_mipmap_linear_nearest_clamp_clamp"); 389 390static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024092, 391 "dEQP-GLES3.functional.texture.filtering.2d.combi", 392 "nations.linear_mipmap_linear_nearest_clamp_repeat"); 393 394static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024093, 395 "dEQP-GLES3.functional.texture.filtering.2d.combi", 396 "nations.linear_mipmap_linear_nearest_clamp_mirror"); 397 398static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024094, 399 "dEQP-GLES3.functional.texture.filtering.2d.combi", 400 "nations.linear_mipmap_linear_nearest_repeat_clamp"); 401 402static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024095, 403 "dEQP-GLES3.functional.texture.filtering.2d.combin", 404 "ations.linear_mipmap_linear_nearest_repeat_repeat"); 405 406static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024096, 407 "dEQP-GLES3.functional.texture.filtering.2d.combin", 408 "ations.linear_mipmap_linear_nearest_repeat_mirror"); 409 410static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024097, 411 "dEQP-GLES3.functional.texture.filtering.2d.combi", 412 "nations.linear_mipmap_linear_nearest_mirror_clamp"); 413 414static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024098, 415 "dEQP-GLES3.functional.texture.filtering.2d.combin", 416 "ations.linear_mipmap_linear_nearest_mirror_repeat"); 417 418static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024099, 419 "dEQP-GLES3.functional.texture.filtering.2d.combin", 420 "ations.linear_mipmap_linear_nearest_mirror_mirror"); 421 422static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024100, 423 "dEQP-GLES3.functional.texture.filtering.2d.comb", 424 "inations.linear_mipmap_linear_linear_clamp_clamp"); 425 426static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024101, 427 "dEQP-GLES3.functional.texture.filtering.2d.combi", 428 "nations.linear_mipmap_linear_linear_clamp_repeat"); 429 430static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024102, 431 "dEQP-GLES3.functional.texture.filtering.2d.combi", 432 "nations.linear_mipmap_linear_linear_clamp_mirror"); 433 434static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024103, 435 "dEQP-GLES3.functional.texture.filtering.2d.combi", 436 "nations.linear_mipmap_linear_linear_repeat_clamp"); 437 438static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024104, 439 "dEQP-GLES3.functional.texture.filtering.2d.combi", 440 "nations.linear_mipmap_linear_linear_repeat_repeat"); 441 442static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024105, 443 "dEQP-GLES3.functional.texture.filtering.2d.combi", 444 "nations.linear_mipmap_linear_linear_repeat_mirror"); 445 446static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024106, 447 "dEQP-GLES3.functional.texture.filtering.2d.combi", 448 "nations.linear_mipmap_linear_linear_mirror_clamp"); 449 450static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024107, 451 "dEQP-GLES3.functional.texture.filtering.2d.combi", 452 "nations.linear_mipmap_linear_linear_mirror_repeat"); 453 454static SHRINK_HWTEST_F(ActsDeqpgles30025TestSuite, TestCase_024108, 455 "dEQP-GLES3.functional.texture.filtering.2d.combi", 456 "nations.linear_mipmap_linear_linear_mirror_mirror"); 457