1f6603c60Sopenharmony_ci/*
2f6603c60Sopenharmony_ci * Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd.
3f6603c60Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
4f6603c60Sopenharmony_ci * you may not use this file except in compliance with the License.
5f6603c60Sopenharmony_ci * You may obtain a copy of the License at
6f6603c60Sopenharmony_ci *
7f6603c60Sopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
8f6603c60Sopenharmony_ci *
9f6603c60Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software
10f6603c60Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
11f6603c60Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12f6603c60Sopenharmony_ci * See the License for the specific language governing permissions and
13f6603c60Sopenharmony_ci * limitations under the License.
14f6603c60Sopenharmony_ci */
15f6603c60Sopenharmony_ci
16f6603c60Sopenharmony_ci#include <climits>
17f6603c60Sopenharmony_ci#include <gtest/gtest.h>
18f6603c60Sopenharmony_ci#include "../Deqpgles3BaseFunc.h"
19f6603c60Sopenharmony_ci#include "../ActsDeqpgles30015TestSuite.h"
20f6603c60Sopenharmony_ci#include "shrinkdefine.h"
21f6603c60Sopenharmony_ci
22f6603c60Sopenharmony_ciusing namespace std;
23f6603c60Sopenharmony_ciusing namespace testing::ext;
24f6603c60Sopenharmony_ciusing namespace OHOS;
25f6603c60Sopenharmony_ci
26f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014304,
27f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matri",
28f6603c60Sopenharmony_ci        "x.sub.dynamic.lowp_mat2_float_vertex");
29f6603c60Sopenharmony_ci
30f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014305,
31f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
32f6603c60Sopenharmony_ci        ".sub.dynamic.lowp_mat2_float_fragment");
33f6603c60Sopenharmony_ci
34f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014306,
35f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matri",
36f6603c60Sopenharmony_ci        "x.sub.dynamic.lowp_mat2_mat2_vertex");
37f6603c60Sopenharmony_ci
38f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014307,
39f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
40f6603c60Sopenharmony_ci        ".sub.dynamic.lowp_mat2_mat2_fragment");
41f6603c60Sopenharmony_ci
42f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014308,
43f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
44f6603c60Sopenharmony_ci        "sub.dynamic.mediump_mat2_float_vertex");
45f6603c60Sopenharmony_ci
46f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014309,
47f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
48f6603c60Sopenharmony_ci        "ub.dynamic.mediump_mat2_float_fragment");
49f6603c60Sopenharmony_ci
50f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014310,
51f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
52f6603c60Sopenharmony_ci        ".sub.dynamic.mediump_mat2_mat2_vertex");
53f6603c60Sopenharmony_ci
54f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014311,
55f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
56f6603c60Sopenharmony_ci        "sub.dynamic.mediump_mat2_mat2_fragment");
57f6603c60Sopenharmony_ci
58f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014312,
59f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
60f6603c60Sopenharmony_ci        ".sub.dynamic.highp_mat2_float_vertex");
61f6603c60Sopenharmony_ci
62f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014313,
63f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
64f6603c60Sopenharmony_ci        "sub.dynamic.highp_mat2_float_fragment");
65f6603c60Sopenharmony_ci
66f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014314,
67f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matri",
68f6603c60Sopenharmony_ci        "x.sub.dynamic.highp_mat2_mat2_vertex");
69f6603c60Sopenharmony_ci
70f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014315,
71f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
72f6603c60Sopenharmony_ci        ".sub.dynamic.highp_mat2_mat2_fragment");
73f6603c60Sopenharmony_ci
74f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014316,
75f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
76f6603c60Sopenharmony_ci        ".sub.dynamic.lowp_mat2x3_float_vertex");
77f6603c60Sopenharmony_ci
78f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014317,
79f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
80f6603c60Sopenharmony_ci        "sub.dynamic.lowp_mat2x3_float_fragment");
81f6603c60Sopenharmony_ci
82f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014318,
83f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
84f6603c60Sopenharmony_ci        "sub.dynamic.lowp_mat2x3_mat2x3_vertex");
85f6603c60Sopenharmony_ci
86f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014319,
87f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
88f6603c60Sopenharmony_ci        "ub.dynamic.lowp_mat2x3_mat2x3_fragment");
89f6603c60Sopenharmony_ci
90f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014320,
91f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
92f6603c60Sopenharmony_ci        "ub.dynamic.mediump_mat2x3_float_vertex");
93f6603c60Sopenharmony_ci
94f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014321,
95f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.su",
96f6603c60Sopenharmony_ci        "b.dynamic.mediump_mat2x3_float_fragment");
97f6603c60Sopenharmony_ci
98f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014322,
99f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
100f6603c60Sopenharmony_ci        "ub.dynamic.mediump_mat2x3_mat2x3_vertex");
101f6603c60Sopenharmony_ci
102f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014323,
103f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.su",
104f6603c60Sopenharmony_ci        "b.dynamic.mediump_mat2x3_mat2x3_fragment");
105f6603c60Sopenharmony_ci
106f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014324,
107f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
108f6603c60Sopenharmony_ci        "sub.dynamic.highp_mat2x3_float_vertex");
109f6603c60Sopenharmony_ci
110f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014325,
111f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
112f6603c60Sopenharmony_ci        "ub.dynamic.highp_mat2x3_float_fragment");
113f6603c60Sopenharmony_ci
114f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014326,
115f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
116f6603c60Sopenharmony_ci        "sub.dynamic.highp_mat2x3_mat2x3_vertex");
117f6603c60Sopenharmony_ci
118f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014327,
119f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
120f6603c60Sopenharmony_ci        "ub.dynamic.highp_mat2x3_mat2x3_fragment");
121f6603c60Sopenharmony_ci
122f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014328,
123f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
124f6603c60Sopenharmony_ci        ".sub.dynamic.lowp_mat2x4_float_vertex");
125f6603c60Sopenharmony_ci
126f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014329,
127f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
128f6603c60Sopenharmony_ci        "sub.dynamic.lowp_mat2x4_float_fragment");
129f6603c60Sopenharmony_ci
130f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014330,
131f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
132f6603c60Sopenharmony_ci        "sub.dynamic.lowp_mat2x4_mat2x4_vertex");
133f6603c60Sopenharmony_ci
134f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014331,
135f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
136f6603c60Sopenharmony_ci        "ub.dynamic.lowp_mat2x4_mat2x4_fragment");
137f6603c60Sopenharmony_ci
138f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014332,
139f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
140f6603c60Sopenharmony_ci        "ub.dynamic.mediump_mat2x4_float_vertex");
141f6603c60Sopenharmony_ci
142f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014333,
143f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.su",
144f6603c60Sopenharmony_ci        "b.dynamic.mediump_mat2x4_float_fragment");
145f6603c60Sopenharmony_ci
146f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014334,
147f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
148f6603c60Sopenharmony_ci        "ub.dynamic.mediump_mat2x4_mat2x4_vertex");
149f6603c60Sopenharmony_ci
150f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014335,
151f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.su",
152f6603c60Sopenharmony_ci        "b.dynamic.mediump_mat2x4_mat2x4_fragment");
153f6603c60Sopenharmony_ci
154f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014336,
155f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
156f6603c60Sopenharmony_ci        "sub.dynamic.highp_mat2x4_float_vertex");
157f6603c60Sopenharmony_ci
158f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014337,
159f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
160f6603c60Sopenharmony_ci        "ub.dynamic.highp_mat2x4_float_fragment");
161f6603c60Sopenharmony_ci
162f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014338,
163f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
164f6603c60Sopenharmony_ci        "sub.dynamic.highp_mat2x4_mat2x4_vertex");
165f6603c60Sopenharmony_ci
166f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014339,
167f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
168f6603c60Sopenharmony_ci        "ub.dynamic.highp_mat2x4_mat2x4_fragment");
169f6603c60Sopenharmony_ci
170f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014340,
171f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
172f6603c60Sopenharmony_ci        ".sub.dynamic.lowp_mat3x2_float_vertex");
173f6603c60Sopenharmony_ci
174f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014341,
175f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
176f6603c60Sopenharmony_ci        "sub.dynamic.lowp_mat3x2_float_fragment");
177f6603c60Sopenharmony_ci
178f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014342,
179f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
180f6603c60Sopenharmony_ci        "sub.dynamic.lowp_mat3x2_mat3x2_vertex");
181f6603c60Sopenharmony_ci
182f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014343,
183f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
184f6603c60Sopenharmony_ci        "ub.dynamic.lowp_mat3x2_mat3x2_fragment");
185f6603c60Sopenharmony_ci
186f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014344,
187f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
188f6603c60Sopenharmony_ci        "ub.dynamic.mediump_mat3x2_float_vertex");
189f6603c60Sopenharmony_ci
190f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014345,
191f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.su",
192f6603c60Sopenharmony_ci        "b.dynamic.mediump_mat3x2_float_fragment");
193f6603c60Sopenharmony_ci
194f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014346,
195f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
196f6603c60Sopenharmony_ci        "ub.dynamic.mediump_mat3x2_mat3x2_vertex");
197f6603c60Sopenharmony_ci
198f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014347,
199f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.su",
200f6603c60Sopenharmony_ci        "b.dynamic.mediump_mat3x2_mat3x2_fragment");
201f6603c60Sopenharmony_ci
202f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014348,
203f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
204f6603c60Sopenharmony_ci        "sub.dynamic.highp_mat3x2_float_vertex");
205f6603c60Sopenharmony_ci
206f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014349,
207f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
208f6603c60Sopenharmony_ci        "ub.dynamic.highp_mat3x2_float_fragment");
209f6603c60Sopenharmony_ci
210f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014350,
211f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
212f6603c60Sopenharmony_ci        "sub.dynamic.highp_mat3x2_mat3x2_vertex");
213f6603c60Sopenharmony_ci
214f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014351,
215f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
216f6603c60Sopenharmony_ci        "ub.dynamic.highp_mat3x2_mat3x2_fragment");
217f6603c60Sopenharmony_ci
218f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014352,
219f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matri",
220f6603c60Sopenharmony_ci        "x.sub.dynamic.lowp_mat3_float_vertex");
221f6603c60Sopenharmony_ci
222f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014353,
223f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
224f6603c60Sopenharmony_ci        ".sub.dynamic.lowp_mat3_float_fragment");
225f6603c60Sopenharmony_ci
226f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014354,
227f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matri",
228f6603c60Sopenharmony_ci        "x.sub.dynamic.lowp_mat3_mat3_vertex");
229f6603c60Sopenharmony_ci
230f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014355,
231f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
232f6603c60Sopenharmony_ci        ".sub.dynamic.lowp_mat3_mat3_fragment");
233f6603c60Sopenharmony_ci
234f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014356,
235f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
236f6603c60Sopenharmony_ci        "sub.dynamic.mediump_mat3_float_vertex");
237f6603c60Sopenharmony_ci
238f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014357,
239f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
240f6603c60Sopenharmony_ci        "ub.dynamic.mediump_mat3_float_fragment");
241f6603c60Sopenharmony_ci
242f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014358,
243f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
244f6603c60Sopenharmony_ci        ".sub.dynamic.mediump_mat3_mat3_vertex");
245f6603c60Sopenharmony_ci
246f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014359,
247f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
248f6603c60Sopenharmony_ci        "sub.dynamic.mediump_mat3_mat3_fragment");
249f6603c60Sopenharmony_ci
250f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014360,
251f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
252f6603c60Sopenharmony_ci        ".sub.dynamic.highp_mat3_float_vertex");
253f6603c60Sopenharmony_ci
254f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014361,
255f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
256f6603c60Sopenharmony_ci        "sub.dynamic.highp_mat3_float_fragment");
257f6603c60Sopenharmony_ci
258f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014362,
259f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matri",
260f6603c60Sopenharmony_ci        "x.sub.dynamic.highp_mat3_mat3_vertex");
261f6603c60Sopenharmony_ci
262f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014363,
263f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
264f6603c60Sopenharmony_ci        ".sub.dynamic.highp_mat3_mat3_fragment");
265f6603c60Sopenharmony_ci
266f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014364,
267f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
268f6603c60Sopenharmony_ci        ".sub.dynamic.lowp_mat3x4_float_vertex");
269f6603c60Sopenharmony_ci
270f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014365,
271f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
272f6603c60Sopenharmony_ci        "sub.dynamic.lowp_mat3x4_float_fragment");
273f6603c60Sopenharmony_ci
274f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014366,
275f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
276f6603c60Sopenharmony_ci        "sub.dynamic.lowp_mat3x4_mat3x4_vertex");
277f6603c60Sopenharmony_ci
278f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014367,
279f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
280f6603c60Sopenharmony_ci        "ub.dynamic.lowp_mat3x4_mat3x4_fragment");
281f6603c60Sopenharmony_ci
282f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014368,
283f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
284f6603c60Sopenharmony_ci        "ub.dynamic.mediump_mat3x4_float_vertex");
285f6603c60Sopenharmony_ci
286f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014369,
287f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.su",
288f6603c60Sopenharmony_ci        "b.dynamic.mediump_mat3x4_float_fragment");
289f6603c60Sopenharmony_ci
290f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014370,
291f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
292f6603c60Sopenharmony_ci        "ub.dynamic.mediump_mat3x4_mat3x4_vertex");
293f6603c60Sopenharmony_ci
294f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014371,
295f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.su",
296f6603c60Sopenharmony_ci        "b.dynamic.mediump_mat3x4_mat3x4_fragment");
297f6603c60Sopenharmony_ci
298f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014372,
299f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
300f6603c60Sopenharmony_ci        "sub.dynamic.highp_mat3x4_float_vertex");
301f6603c60Sopenharmony_ci
302f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014373,
303f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
304f6603c60Sopenharmony_ci        "ub.dynamic.highp_mat3x4_float_fragment");
305f6603c60Sopenharmony_ci
306f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014374,
307f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
308f6603c60Sopenharmony_ci        "sub.dynamic.highp_mat3x4_mat3x4_vertex");
309f6603c60Sopenharmony_ci
310f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014375,
311f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
312f6603c60Sopenharmony_ci        "ub.dynamic.highp_mat3x4_mat3x4_fragment");
313f6603c60Sopenharmony_ci
314f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014376,
315f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
316f6603c60Sopenharmony_ci        ".sub.dynamic.lowp_mat4x2_float_vertex");
317f6603c60Sopenharmony_ci
318f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014377,
319f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
320f6603c60Sopenharmony_ci        "sub.dynamic.lowp_mat4x2_float_fragment");
321f6603c60Sopenharmony_ci
322f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014378,
323f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
324f6603c60Sopenharmony_ci        "sub.dynamic.lowp_mat4x2_mat4x2_vertex");
325f6603c60Sopenharmony_ci
326f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014379,
327f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
328f6603c60Sopenharmony_ci        "ub.dynamic.lowp_mat4x2_mat4x2_fragment");
329f6603c60Sopenharmony_ci
330f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014380,
331f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
332f6603c60Sopenharmony_ci        "ub.dynamic.mediump_mat4x2_float_vertex");
333f6603c60Sopenharmony_ci
334f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014381,
335f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.su",
336f6603c60Sopenharmony_ci        "b.dynamic.mediump_mat4x2_float_fragment");
337f6603c60Sopenharmony_ci
338f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014382,
339f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
340f6603c60Sopenharmony_ci        "ub.dynamic.mediump_mat4x2_mat4x2_vertex");
341f6603c60Sopenharmony_ci
342f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014383,
343f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.su",
344f6603c60Sopenharmony_ci        "b.dynamic.mediump_mat4x2_mat4x2_fragment");
345f6603c60Sopenharmony_ci
346f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014384,
347f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
348f6603c60Sopenharmony_ci        "sub.dynamic.highp_mat4x2_float_vertex");
349f6603c60Sopenharmony_ci
350f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014385,
351f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
352f6603c60Sopenharmony_ci        "ub.dynamic.highp_mat4x2_float_fragment");
353f6603c60Sopenharmony_ci
354f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014386,
355f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
356f6603c60Sopenharmony_ci        "sub.dynamic.highp_mat4x2_mat4x2_vertex");
357f6603c60Sopenharmony_ci
358f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014387,
359f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
360f6603c60Sopenharmony_ci        "ub.dynamic.highp_mat4x2_mat4x2_fragment");
361f6603c60Sopenharmony_ci
362f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014388,
363f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
364f6603c60Sopenharmony_ci        ".sub.dynamic.lowp_mat4x3_float_vertex");
365f6603c60Sopenharmony_ci
366f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014389,
367f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
368f6603c60Sopenharmony_ci        "sub.dynamic.lowp_mat4x3_float_fragment");
369f6603c60Sopenharmony_ci
370f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014390,
371f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
372f6603c60Sopenharmony_ci        "sub.dynamic.lowp_mat4x3_mat4x3_vertex");
373f6603c60Sopenharmony_ci
374f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014391,
375f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
376f6603c60Sopenharmony_ci        "ub.dynamic.lowp_mat4x3_mat4x3_fragment");
377f6603c60Sopenharmony_ci
378f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014392,
379f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
380f6603c60Sopenharmony_ci        "ub.dynamic.mediump_mat4x3_float_vertex");
381f6603c60Sopenharmony_ci
382f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014393,
383f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.su",
384f6603c60Sopenharmony_ci        "b.dynamic.mediump_mat4x3_float_fragment");
385f6603c60Sopenharmony_ci
386f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014394,
387f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
388f6603c60Sopenharmony_ci        "ub.dynamic.mediump_mat4x3_mat4x3_vertex");
389f6603c60Sopenharmony_ci
390f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014395,
391f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.su",
392f6603c60Sopenharmony_ci        "b.dynamic.mediump_mat4x3_mat4x3_fragment");
393f6603c60Sopenharmony_ci
394f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014396,
395f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
396f6603c60Sopenharmony_ci        "sub.dynamic.highp_mat4x3_float_vertex");
397f6603c60Sopenharmony_ci
398f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014397,
399f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
400f6603c60Sopenharmony_ci        "ub.dynamic.highp_mat4x3_float_fragment");
401f6603c60Sopenharmony_ci
402f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014398,
403f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
404f6603c60Sopenharmony_ci        "sub.dynamic.highp_mat4x3_mat4x3_vertex");
405f6603c60Sopenharmony_ci
406f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014399,
407f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
408f6603c60Sopenharmony_ci        "ub.dynamic.highp_mat4x3_mat4x3_fragment");
409f6603c60Sopenharmony_ci
410f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014400,
411f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matri",
412f6603c60Sopenharmony_ci        "x.sub.dynamic.lowp_mat4_float_vertex");
413f6603c60Sopenharmony_ci
414f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014401,
415f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
416f6603c60Sopenharmony_ci        ".sub.dynamic.lowp_mat4_float_fragment");
417f6603c60Sopenharmony_ci
418f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014402,
419f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matri",
420f6603c60Sopenharmony_ci        "x.sub.dynamic.lowp_mat4_mat4_vertex");
421f6603c60Sopenharmony_ci
422f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014403,
423f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
424f6603c60Sopenharmony_ci        ".sub.dynamic.lowp_mat4_mat4_fragment");
425f6603c60Sopenharmony_ci
426f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014404,
427f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
428f6603c60Sopenharmony_ci        "sub.dynamic.mediump_mat4_float_vertex");
429f6603c60Sopenharmony_ci
430f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014405,
431f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.s",
432f6603c60Sopenharmony_ci        "ub.dynamic.mediump_mat4_float_fragment");
433f6603c60Sopenharmony_ci
434f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014406,
435f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
436f6603c60Sopenharmony_ci        ".sub.dynamic.mediump_mat4_mat4_vertex");
437f6603c60Sopenharmony_ci
438f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014407,
439f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
440f6603c60Sopenharmony_ci        "sub.dynamic.mediump_mat4_mat4_fragment");
441f6603c60Sopenharmony_ci
442f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014408,
443f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
444f6603c60Sopenharmony_ci        ".sub.dynamic.highp_mat4_float_vertex");
445f6603c60Sopenharmony_ci
446f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014409,
447f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix.",
448f6603c60Sopenharmony_ci        "sub.dynamic.highp_mat4_float_fragment");
449f6603c60Sopenharmony_ci
450f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014410,
451f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matri",
452f6603c60Sopenharmony_ci        "x.sub.dynamic.highp_mat4_mat4_vertex");
453f6603c60Sopenharmony_ci
454f6603c60Sopenharmony_cistatic SHRINK_HWTEST_F(ActsDeqpgles30015TestSuite, TestCase_014411,
455f6603c60Sopenharmony_ci        "dEQP-GLES3.functional.shaders.matrix",
456f6603c60Sopenharmony_ci        ".sub.dynamic.highp_mat4_mat4_fragment");
457