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 "../EglBaseFunc.h"
19#include "../ActsEgl0001TestSuite.h"
20#include "shrinkdefine.h"
21
22using namespace std;
23using namespace testing::ext;
24using namespace OHOS;
25
26static SHRINK_HWTEST_F(ActsEgl0001TS, TC000953, "dEQP-EGL.functional.image.api.inva",
27    "lid_create_image");
28
29static SHRINK_HWTEST_F(ActsEgl0001TS, TC000954, "dEQP-EGL.functional.image.api.crea",
30    "te_image_gles2_tex2d_red");
31
32static SHRINK_HWTEST_F(ActsEgl0001TS, TC000955, "dEQP-EGL.functional.image.api.crea",
33    "te_image_gles2_tex2d_rg");
34
35static SHRINK_HWTEST_F(ActsEgl0001TS, TC000956, "dEQP-EGL.functional.image.api.cr",
36    "eate_image_gles2_tex2d_luminance");
37
38static SHRINK_HWTEST_F(ActsEgl0001TS, TC000957, "dEQP-EGL.functional.image.api.creat",
39    "e_image_gles2_tex2d_luminance_alpha");
40
41static SHRINK_HWTEST_F(ActsEgl0001TS, TC000958, "dEQP-EGL.functional.image.api.create_ima",
42    "ge_gles2_tex2d_rgb");
43
44static SHRINK_HWTEST_F(ActsEgl0001TS, TC000959, "dEQP-EGL.functional.image.api.create_im",
45    "age_gles2_tex2d_rgba");
46
47static SHRINK_HWTEST_F(ActsEgl0001TS, TC000960, "dEQP-EGL.functional.image.api.creat",
48    "e_image_gles2_tex2d_rgba_level0_only");
49
50static SHRINK_HWTEST_F(ActsEgl0001TS, TC000961, "dEQP-EGL.functional.image.api.cre",
51    "ate_image_gles2_cubemap_pos_x_rgb");
52
53static SHRINK_HWTEST_F(ActsEgl0001TS, TC000962, "dEQP-EGL.functional.image.api.cre",
54    "ate_image_gles2_cubemap_pos_x_rgba");
55
56static SHRINK_HWTEST_F(ActsEgl0001TS, TC000963, "dEQP-EGL.functional.image.api.create_im",
57    "age_gles2_cubemap_pos_x_rgba_level0_only");
58
59static SHRINK_HWTEST_F(ActsEgl0001TS, TC000964, "dEQP-EGL.functional.image.api.cre",
60    "ate_image_gles2_cubemap_neg_x_rgba");
61
62static SHRINK_HWTEST_F(ActsEgl0001TS, TC000965, "dEQP-EGL.functional.image.api.cre",
63    "ate_image_gles2_cubemap_pos_y_rgba");
64
65static SHRINK_HWTEST_F(ActsEgl0001TS, TC000966, "dEQP-EGL.functional.image.api.cre",
66    "ate_image_gles2_cubemap_neg_y_rgba");
67
68static SHRINK_HWTEST_F(ActsEgl0001TS, TC000967, "dEQP-EGL.functional.image.api.cre",
69    "ate_image_gles2_cubemap_pos_z_rgba");
70
71static SHRINK_HWTEST_F(ActsEgl0001TS, TC000968, "dEQP-EGL.functional.image.api.cre",
72    "ate_image_gles2_cubemap_neg_z_rgba");
73
74static SHRINK_HWTEST_F(ActsEgl0001TS, TC000969, "dEQP-EGL.functional.image.api.create_ima",
75    "ge_gles2_renderbuffer_depth_component_16");
76
77static SHRINK_HWTEST_F(ActsEgl0001TS, TC000970, "dEQP-EGL.functional.image.api.cre",
78    "ate_image_gles2_renderbuffer_rgba4");
79
80static SHRINK_HWTEST_F(ActsEgl0001TS, TC000971, "dEQP-EGL.functional.image.api.crea",
81    "te_image_gles2_renderbuffer_rgb5_a1");
82
83static SHRINK_HWTEST_F(ActsEgl0001TS, TC000972, "dEQP-EGL.functional.image.api.crea",
84    "te_image_gles2_renderbuffer_rgb565");
85
86static SHRINK_HWTEST_F(ActsEgl0001TS, TC000973, "dEQP-EGL.functional.image.api.create_i",
87    "mage_gles2_renderbuffer_stencil_index8");
88
89static SHRINK_HWTEST_F(ActsEgl0001TS, TC000974, "dEQP-EGL.functional.image.api.image_targ",
90    "et_gles2_tex2d");
91
92static SHRINK_HWTEST_F(ActsEgl0001TS, TC000975, "dEQP-EGL.functional.image.api.",
93    "image_target_gles2_renderbuffer");
94
95static SHRINK_HWTEST_F(ActsEgl0001TS, TC000976, "dEQP-EGL.functional.image.create.gles2_tex",
96    "ture_rgb8_texture");
97
98static SHRINK_HWTEST_F(ActsEgl0001TS, TC000977, "dEQP-EGL.functional.image.creat",
99    "e.gles2_texture_rgb8_read_pixels");
100
101static SHRINK_HWTEST_F(ActsEgl0001TS, TC000978, "dEQP-EGL.functional.image.crea",
102    "te.gles2_texture_rgb565_texture");
103
104static SHRINK_HWTEST_F(ActsEgl0001TS, TC000979, "dEQP-EGL.functional.image.create",
105    ".gles2_texture_rgb565_read_pixels");
106
107static SHRINK_HWTEST_F(ActsEgl0001TS, TC000980, "dEQP-EGL.functional.image.crea",
108    "te.gles2_texture_rgba8_texture");
109
110static SHRINK_HWTEST_F(ActsEgl0001TS, TC000981, "dEQP-EGL.functional.image.create",
111    ".gles2_texture_rgba8_read_pixels");
112
113static SHRINK_HWTEST_F(ActsEgl0001TS, TC000982, "dEQP-EGL.functional.image.creat",
114    "e.gles2_texture_rgb5_a1_texture");
115
116static SHRINK_HWTEST_F(ActsEgl0001TS, TC000983, "dEQP-EGL.functional.image.create.",
117    "gles2_texture_rgb5_a1_read_pixels");
118
119static SHRINK_HWTEST_F(ActsEgl0001TS, TC000984, "dEQP-EGL.functional.image.crea",
120    "te.gles2_texture_rgba4_texture");
121
122static SHRINK_HWTEST_F(ActsEgl0001TS, TC000985, "dEQP-EGL.functional.image.create",
123    ".gles2_texture_rgba4_read_pixels");
124
125static SHRINK_HWTEST_F(ActsEgl0001TS, TC000986, "dEQP-EGL.functional.image.create.gl",
126    "es2_cubemap_positive_x_rgba_texture");
127
128static SHRINK_HWTEST_F(ActsEgl0001TS, TC000987, "dEQP-EGL.functional.image.create.gles",
129    "2_cubemap_positive_x_rgba_read_pixels");
130
131static SHRINK_HWTEST_F(ActsEgl0001TS, TC000988, "dEQP-EGL.functional.image.create.gl",
132    "es2_cubemap_positive_y_rgba_texture");
133
134static SHRINK_HWTEST_F(ActsEgl0001TS, TC000989, "dEQP-EGL.functional.image.create.gles",
135    "2_cubemap_positive_y_rgba_read_pixels");
136
137static SHRINK_HWTEST_F(ActsEgl0001TS, TC000990, "dEQP-EGL.functional.image.create.gl",
138    "es2_cubemap_positive_z_rgba_texture");
139
140static SHRINK_HWTEST_F(ActsEgl0001TS, TC000991, "dEQP-EGL.functional.image.create.gles",
141    "2_cubemap_positive_z_rgba_read_pixels");
142
143static SHRINK_HWTEST_F(ActsEgl0001TS, TC000992, "dEQP-EGL.functional.image.create.gl",
144    "es2_cubemap_negative_x_rgba_texture");
145
146static SHRINK_HWTEST_F(ActsEgl0001TS, TC000993, "dEQP-EGL.functional.image.create.gles",
147    "2_cubemap_negative_x_rgba_read_pixels");
148
149static SHRINK_HWTEST_F(ActsEgl0001TS, TC000994, "dEQP-EGL.functional.image.create.gl",
150    "es2_cubemap_negative_y_rgba_texture");
151
152static SHRINK_HWTEST_F(ActsEgl0001TS, TC000995, "dEQP-EGL.functional.image.create.gles",
153    "2_cubemap_negative_y_rgba_read_pixels");
154
155static SHRINK_HWTEST_F(ActsEgl0001TS, TC000996, "dEQP-EGL.functional.image.create.gl",
156    "es2_cubemap_negative_z_rgba_texture");
157
158static SHRINK_HWTEST_F(ActsEgl0001TS, TC000997, "dEQP-EGL.functional.image.create.gles",
159    "2_cubemap_negative_z_rgba_read_pixels");
160
161static SHRINK_HWTEST_F(ActsEgl0001TS, TC000998, "dEQP-EGL.functional.image.create.g",
162    "les2_cubemap_positive_x_rgb_texture");
163
164static SHRINK_HWTEST_F(ActsEgl0001TS, TC000999, "dEQP-EGL.functional.image.create.gle",
165    "s2_cubemap_positive_x_rgb_read_pixels");
166
167static SHRINK_HWTEST_F(ActsEgl0001TS, TC001000, "dEQP-EGL.functional.image.create.g",
168    "les2_cubemap_positive_y_rgb_texture");
169
170static SHRINK_HWTEST_F(ActsEgl0001TS, TC001001, "dEQP-EGL.functional.image.create.gle",
171    "s2_cubemap_positive_y_rgb_read_pixels");
172
173static SHRINK_HWTEST_F(ActsEgl0001TS, TC001002, "dEQP-EGL.functional.image.create.g",
174    "les2_cubemap_positive_z_rgb_texture");
175
176static SHRINK_HWTEST_F(ActsEgl0001TS, TC001003, "dEQP-EGL.functional.image.create.gle",
177    "s2_cubemap_positive_z_rgb_read_pixels");
178
179static SHRINK_HWTEST_F(ActsEgl0001TS, TC001004, "dEQP-EGL.functional.image.create.g",
180    "les2_cubemap_negative_x_rgb_texture");
181
182static SHRINK_HWTEST_F(ActsEgl0001TS, TC001005, "dEQP-EGL.functional.image.create.gle",
183    "s2_cubemap_negative_x_rgb_read_pixels");
184
185static SHRINK_HWTEST_F(ActsEgl0001TS, TC001006, "dEQP-EGL.functional.image.create.g",
186    "les2_cubemap_negative_y_rgb_texture");
187
188static SHRINK_HWTEST_F(ActsEgl0001TS, TC001007, "dEQP-EGL.functional.image.create.gle",
189    "s2_cubemap_negative_y_rgb_read_pixels");
190
191static SHRINK_HWTEST_F(ActsEgl0001TS, TC001008, "dEQP-EGL.functional.image.create.g",
192    "les2_cubemap_negative_z_rgb_texture");
193
194static SHRINK_HWTEST_F(ActsEgl0001TS, TC001009, "dEQP-EGL.functional.image.create.gle",
195    "s2_cubemap_negative_z_rgb_read_pixels");
196
197static SHRINK_HWTEST_F(ActsEgl0001TS, TC001010, "dEQP-EGL.functional.image.create",
198    ".gles2_renderbuffer_rgba4_texture");
199
200static SHRINK_HWTEST_F(ActsEgl0001TS, TC001011, "dEQP-EGL.functional.image.create.g",
201    "les2_renderbuffer_rgba4_read_pixels");
202
203static SHRINK_HWTEST_F(ActsEgl0001TS, TC001012, "dEQP-EGL.functional.image.create.",
204    "gles2_renderbuffer_rgb5_a1_texture");
205
206static SHRINK_HWTEST_F(ActsEgl0001TS, TC001013, "dEQP-EGL.functional.image.create.gl",
207    "es2_renderbuffer_rgb5_a1_read_pixels");
208
209static SHRINK_HWTEST_F(ActsEgl0001TS, TC001014, "dEQP-EGL.functional.image.create.",
210    "gles2_renderbuffer_rgb565_texture");
211
212static SHRINK_HWTEST_F(ActsEgl0001TS, TC001015, "dEQP-EGL.functional.image.create.gl",
213    "es2_renderbuffer_rgb565_read_pixels");
214
215static SHRINK_HWTEST_F(ActsEgl0001TS, TC001016, "dEQP-EGL.functional.image.create.gle",
216    "s2_renderbuffer_depth16_depth_buffer");
217
218static SHRINK_HWTEST_F(ActsEgl0001TS, TC001017, "dEQP-EGL.functional.image.create.gles",
219    "2_renderbuffer_stencil_stencil_buffer");
220
221static SHRINK_HWTEST_F(ActsEgl0001TS, TC001018, "dEQP-EGL.functional.image.modify.tex_",
222    "rgb8_tex_subimage_rgb8");
223
224static SHRINK_HWTEST_F(ActsEgl0001TS, TC001019, "dEQP-EGL.functional.image.modify.",
225    "tex_rgb8_renderbuffer_clear_color");
226
227static SHRINK_HWTEST_F(ActsEgl0001TS, TC001020, "dEQP-EGL.functional.image.modi",
228    "fy.tex_rgb565_tex_subimage_rgb8");
229
230static SHRINK_HWTEST_F(ActsEgl0001TS, TC001021, "dEQP-EGL.functional.image.modif",
231    "y.tex_rgb565_tex_subimage_rgb565");
232
233static SHRINK_HWTEST_F(ActsEgl0001TS, TC001022, "dEQP-EGL.functional.image.modify.t",
234    "ex_rgb565_renderbuffer_clear_color");
235
236static SHRINK_HWTEST_F(ActsEgl0001TS, TC001023, "dEQP-EGL.functional.image.modi",
237    "fy.tex_rgba8_tex_subimage_rgba8");
238
239static SHRINK_HWTEST_F(ActsEgl0001TS, TC001024, "dEQP-EGL.functional.image.modify.",
240    "tex_rgba8_renderbuffer_clear_color");
241
242static SHRINK_HWTEST_F(ActsEgl0001TS, TC001025, "dEQP-EGL.functional.image.modify",
243    ".tex_rgb5_a1_tex_subimage_rgb5_a1");
244
245static SHRINK_HWTEST_F(ActsEgl0001TS, TC001026, "dEQP-EGL.functional.image.modify.t",
246    "ex_rgb5_a1_renderbuffer_clear_color");
247
248static SHRINK_HWTEST_F(ActsEgl0001TS, TC001027, "dEQP-EGL.functional.image.modi",
249    "fy.tex_rgba4_tex_subimage_rgba8");
250
251static SHRINK_HWTEST_F(ActsEgl0001TS, TC001028, "dEQP-EGL.functional.image.modi",
252    "fy.tex_rgba4_tex_subimage_rgba4");
253
254static SHRINK_HWTEST_F(ActsEgl0001TS, TC001029, "dEQP-EGL.functional.image.modify.re",
255    "nderbuffer_rgba4_tex_subimage_rgba8");
256
257static SHRINK_HWTEST_F(ActsEgl0001TS, TC001030, "dEQP-EGL.functional.image.modify.re",
258    "nderbuffer_rgba4_tex_subimage_rgba4");
259
260static SHRINK_HWTEST_F(ActsEgl0001TS, TC001031, "dEQP-EGL.functional.image.modify.rend",
261    "erbuffer_rgb5_a1_tex_subimage_rgb5_a1");
262
263static SHRINK_HWTEST_F(ActsEgl0001TS, TC001032, "dEQP-EGL.functional.image.modify.render",
264    "buffer_rgb5_a1_renderbuffer_clear_color");
265
266static SHRINK_HWTEST_F(ActsEgl0001TS, TC001033, "dEQP-EGL.functional.image.modify.re",
267    "nderbuffer_rgb565_tex_subimage_rgb8");
268
269static SHRINK_HWTEST_F(ActsEgl0001TS, TC001034, "dEQP-EGL.functional.image.modify.ren",
270    "derbuffer_rgb565_tex_subimage_rgb565");
271
272static SHRINK_HWTEST_F(ActsEgl0001TS, TC001035, "dEQP-EGL.functional.image.modify.rende",
273    "rbuffer_rgb565_renderbuffer_clear_color");
274
275static SHRINK_HWTEST_F(ActsEgl0001TS, TC001036, "dEQP-EGL.functional.image.modify.render",
276    "buffer_depth16_renderbuffer_clear_depth");
277
278static SHRINK_HWTEST_F(ActsEgl0001TS, TC001037, "dEQP-EGL.functional.image.modify.renderb",
279    "uffer_stencil_renderbuffer_clear_stencil");
280
281static SHRINK_HWTEST_F(ActsEgl0001TS, TC001038, "dEQP-EGL.functional.image.render_multi",
282    "ple_contexts.gles2_texture_rgb8_texture");
283
284static SHRINK_HWTEST_F(ActsEgl0001TS, TC001039, "dEQP-EGL.functional.image.render_multipl",
285    "e_contexts.gles2_texture_rgb8_read_pixels");
286
287static SHRINK_HWTEST_F(ActsEgl0001TS, TC001040, "dEQP-EGL.functional.image.render_multip",
288    "le_contexts.gles2_texture_rgb565_texture");
289
290static SHRINK_HWTEST_F(ActsEgl0001TS, TC001041, "dEQP-EGL.functional.image.render_multiple",
291    "_contexts.gles2_texture_rgb565_read_pixels");
292
293static SHRINK_HWTEST_F(ActsEgl0001TS, TC001042, "dEQP-EGL.functional.image.render_multip",
294    "le_contexts.gles2_texture_rgba8_texture");
295
296static SHRINK_HWTEST_F(ActsEgl0001TS, TC001043, "dEQP-EGL.functional.image.render_multiple",
297    "_contexts.gles2_texture_rgba8_read_pixels");
298
299static SHRINK_HWTEST_F(ActsEgl0001TS, TC001044, "dEQP-EGL.functional.image.render_multipl",
300    "e_contexts.gles2_texture_rgb5_a1_texture");
301
302static SHRINK_HWTEST_F(ActsEgl0001TS, TC001045, "dEQP-EGL.functional.image.render_multiple_",
303    "contexts.gles2_texture_rgb5_a1_read_pixels");
304
305static SHRINK_HWTEST_F(ActsEgl0001TS, TC001046, "dEQP-EGL.functional.image.render_multip",
306    "le_contexts.gles2_texture_rgba4_texture");
307
308static SHRINK_HWTEST_F(ActsEgl0001TS, TC001047, "dEQP-EGL.functional.image.render_multiple",
309    "_contexts.gles2_texture_rgba4_read_pixels");
310
311static SHRINK_HWTEST_F(ActsEgl0001TS, TC001048, "dEQP-EGL.functional.image.render_multiple_co",
312    "ntexts.gles2_cubemap_positive_x_rgba8_texture");
313
314static SHRINK_HWTEST_F(ActsEgl0001TS, TC001049, "dEQP-EGL.functional.image.render_multiple_cont",
315    "exts.gles2_cubemap_positive_x_rgba8_read_pixels");
316
317static SHRINK_HWTEST_F(ActsEgl0001TS, TC001050, "dEQP-EGL.functional.image.render_multiple_co",
318    "ntexts.gles2_cubemap_positive_y_rgba8_texture");
319
320static SHRINK_HWTEST_F(ActsEgl0001TS, TC001051, "dEQP-EGL.functional.image.render_multiple_cont",
321    "exts.gles2_cubemap_positive_y_rgba8_read_pixels");
322
323static SHRINK_HWTEST_F(ActsEgl0001TS, TC001052, "dEQP-EGL.functional.image.render_multiple_co",
324    "ntexts.gles2_cubemap_positive_z_rgba8_texture");
325
326static SHRINK_HWTEST_F(ActsEgl0001TS, TC001053, "dEQP-EGL.functional.image.render_multiple_cont",
327    "exts.gles2_cubemap_positive_z_rgba8_read_pixels");
328
329static SHRINK_HWTEST_F(ActsEgl0001TS, TC001054, "dEQP-EGL.functional.image.render_multiple_co",
330    "ntexts.gles2_cubemap_negative_x_rgba8_texture");
331
332static SHRINK_HWTEST_F(ActsEgl0001TS, TC001055, "dEQP-EGL.functional.image.render_multiple_cont",
333    "exts.gles2_cubemap_negative_x_rgba8_read_pixels");
334
335static SHRINK_HWTEST_F(ActsEgl0001TS, TC001056, "dEQP-EGL.functional.image.render_multiple_co",
336    "ntexts.gles2_cubemap_negative_y_rgba8_texture");
337
338static SHRINK_HWTEST_F(ActsEgl0001TS, TC001057, "dEQP-EGL.functional.image.render_multiple_cont",
339    "exts.gles2_cubemap_negative_y_rgba8_read_pixels");
340
341static SHRINK_HWTEST_F(ActsEgl0001TS, TC001058, "dEQP-EGL.functional.image.render_multiple_co",
342    "ntexts.gles2_cubemap_negative_z_rgba8_texture");
343
344static SHRINK_HWTEST_F(ActsEgl0001TS, TC001059, "dEQP-EGL.functional.image.render_multiple_cont",
345    "exts.gles2_cubemap_negative_z_rgba8_read_pixels");
346
347static SHRINK_HWTEST_F(ActsEgl0001TS, TC001060, "dEQP-EGL.functional.image.render_multiple_co",
348    "ntexts.gles2_cubemap_positive_x_rgb8_texture");
349
350static SHRINK_HWTEST_F(ActsEgl0001TS, TC001061, "dEQP-EGL.functional.image.render_multiple_cont",
351    "exts.gles2_cubemap_positive_x_rgb8_read_pixels");
352
353static SHRINK_HWTEST_F(ActsEgl0001TS, TC001062, "dEQP-EGL.functional.image.render_multiple_co",
354    "ntexts.gles2_cubemap_positive_y_rgb8_texture");
355
356static SHRINK_HWTEST_F(ActsEgl0001TS, TC001063, "dEQP-EGL.functional.image.render_multiple_cont",
357    "exts.gles2_cubemap_positive_y_rgb8_read_pixels");
358
359static SHRINK_HWTEST_F(ActsEgl0001TS, TC001064, "dEQP-EGL.functional.image.render_multiple_co",
360    "ntexts.gles2_cubemap_positive_z_rgb8_texture");
361
362static SHRINK_HWTEST_F(ActsEgl0001TS, TC001065, "dEQP-EGL.functional.image.render_multiple_cont",
363    "exts.gles2_cubemap_positive_z_rgb8_read_pixels");
364
365static SHRINK_HWTEST_F(ActsEgl0001TS, TC001066, "dEQP-EGL.functional.image.render_multiple_co",
366    "ntexts.gles2_cubemap_negative_x_rgb8_texture");
367
368static SHRINK_HWTEST_F(ActsEgl0001TS, TC001067, "dEQP-EGL.functional.image.render_multiple_cont",
369    "exts.gles2_cubemap_negative_x_rgb8_read_pixels");
370
371static SHRINK_HWTEST_F(ActsEgl0001TS, TC001068, "dEQP-EGL.functional.image.render_multiple_co",
372    "ntexts.gles2_cubemap_negative_y_rgb8_texture");
373
374static SHRINK_HWTEST_F(ActsEgl0001TS, TC001069, "dEQP-EGL.functional.image.render_multiple_cont",
375    "exts.gles2_cubemap_negative_y_rgb8_read_pixels");
376
377static SHRINK_HWTEST_F(ActsEgl0001TS, TC001070, "dEQP-EGL.functional.image.render_multiple_co",
378    "ntexts.gles2_cubemap_negative_z_rgb8_texture");
379
380static SHRINK_HWTEST_F(ActsEgl0001TS, TC001071, "dEQP-EGL.functional.image.render_multiple_cont",
381    "exts.gles2_cubemap_negative_z_rgb8_read_pixels");
382
383static SHRINK_HWTEST_F(ActsEgl0001TS, TC001072, "dEQP-EGL.functional.image.render_multiple",
384    "_contexts.gles2_renderbuffer_rgba4_texture");
385
386static SHRINK_HWTEST_F(ActsEgl0001TS, TC001073, "dEQP-EGL.functional.image.render_multiple_c",
387    "ontexts.gles2_renderbuffer_rgba4_read_pixels");
388
389static SHRINK_HWTEST_F(ActsEgl0001TS, TC001074, "dEQP-EGL.functional.image.render_multiple_",
390    "contexts.gles2_renderbuffer_rgb5_a1_texture");
391
392static SHRINK_HWTEST_F(ActsEgl0001TS, TC001075, "dEQP-EGL.functional.image.render_multiple_co",
393    "ntexts.gles2_renderbuffer_rgb5_a1_read_pixels");
394
395static SHRINK_HWTEST_F(ActsEgl0001TS, TC001076, "dEQP-EGL.functional.image.render_multiple_",
396    "contexts.gles2_renderbuffer_rgb565_texture");
397
398static SHRINK_HWTEST_F(ActsEgl0001TS, TC001077, "dEQP-EGL.functional.image.render_multiple_co",
399    "ntexts.gles2_renderbuffer_rgb565_read_pixels");
400
401static SHRINK_HWTEST_F(ActsEgl0001TS, TC001078, "dEQP-EGL.functional.image.render_multiple_con",
402    "texts.gles2_renderbuffer_depth16_depth_buffer");
403
404static SHRINK_HWTEST_F(ActsEgl0001TS, TC001079, "dEQP-EGL.functional.image.render_multiple_cont",
405    "exts.gles2_renderbuffer_stencil_stencil_buffer");
406