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