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 "../Deqpgles31BaseFunc.h" 19 #include "../ActsDeqpgles310010TestSuite.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(ActsDeqpgles310010TestSuite, TestCase_009418, 27 "dEQP-GLES31.functional.ssbo.la", 28 "yout.3_level_array.std140.float"); 29 30 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009419, 31 "dEQP-GLES31.functional.ssbo.la", 32 "yout.3_level_array.std140.vec2"); 33 34 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009420, 35 "dEQP-GLES31.functional.ssbo.la", 36 "yout.3_level_array.std140.vec3"); 37 38 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009421, 39 "dEQP-GLES31.functional.ssbo.la", 40 "yout.3_level_array.std140.vec4"); 41 42 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009422, 43 "dEQP-GLES31.functional.ssbo.l", 44 "ayout.3_level_array.std140.int"); 45 46 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009423, 47 "dEQP-GLES31.functional.ssbo.la", 48 "yout.3_level_array.std140.ivec2"); 49 50 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009424, 51 "dEQP-GLES31.functional.ssbo.la", 52 "yout.3_level_array.std140.ivec3"); 53 54 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009425, 55 "dEQP-GLES31.functional.ssbo.la", 56 "yout.3_level_array.std140.ivec4"); 57 58 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009426, 59 "dEQP-GLES31.functional.ssbo.la", 60 "yout.3_level_array.std140.uint"); 61 62 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009427, 63 "dEQP-GLES31.functional.ssbo.la", 64 "yout.3_level_array.std140.uvec2"); 65 66 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009428, 67 "dEQP-GLES31.functional.ssbo.la", 68 "yout.3_level_array.std140.uvec3"); 69 70 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009429, 71 "dEQP-GLES31.functional.ssbo.la", 72 "yout.3_level_array.std140.uvec4"); 73 74 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009430, 75 "dEQP-GLES31.functional.ssbo.la", 76 "yout.3_level_array.std140.bool"); 77 78 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009431, 79 "dEQP-GLES31.functional.ssbo.la", 80 "yout.3_level_array.std140.bvec2"); 81 82 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009432, 83 "dEQP-GLES31.functional.ssbo.la", 84 "yout.3_level_array.std140.bvec3"); 85 86 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009433, 87 "dEQP-GLES31.functional.ssbo.la", 88 "yout.3_level_array.std140.bvec4"); 89 90 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009434, 91 "dEQP-GLES31.functional.ssbo.la", 92 "yout.3_level_array.std140.mat2"); 93 94 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009435, 95 "dEQP-GLES31.functional.ssbo.layout.", 96 "3_level_array.std140.row_major_mat2"); 97 98 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009436, 99 "dEQP-GLES31.functional.ssbo.layout.3", 100 "_level_array.std140.column_major_mat2"); 101 102 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009437, 103 "dEQP-GLES31.functional.ssbo.la", 104 "yout.3_level_array.std140.mat3"); 105 106 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009438, 107 "dEQP-GLES31.functional.ssbo.layout.", 108 "3_level_array.std140.row_major_mat3"); 109 110 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009439, 111 "dEQP-GLES31.functional.ssbo.layout.3", 112 "_level_array.std140.column_major_mat3"); 113 114 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009440, 115 "dEQP-GLES31.functional.ssbo.la", 116 "yout.3_level_array.std140.mat4"); 117 118 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009441, 119 "dEQP-GLES31.functional.ssbo.layout.", 120 "3_level_array.std140.row_major_mat4"); 121 122 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009442, 123 "dEQP-GLES31.functional.ssbo.layout.3", 124 "_level_array.std140.column_major_mat4"); 125 126 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009443, 127 "dEQP-GLES31.functional.ssbo.lay", 128 "out.3_level_array.std140.mat2x3"); 129 130 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009444, 131 "dEQP-GLES31.functional.ssbo.layout.3", 132 "_level_array.std140.row_major_mat2x3"); 133 134 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009445, 135 "dEQP-GLES31.functional.ssbo.layout.3_", 136 "level_array.std140.column_major_mat2x3"); 137 138 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009446, 139 "dEQP-GLES31.functional.ssbo.lay", 140 "out.3_level_array.std140.mat2x4"); 141 142 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009447, 143 "dEQP-GLES31.functional.ssbo.layout.3", 144 "_level_array.std140.row_major_mat2x4"); 145 146 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009448, 147 "dEQP-GLES31.functional.ssbo.layout.3_", 148 "level_array.std140.column_major_mat2x4"); 149 150 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009449, 151 "dEQP-GLES31.functional.ssbo.lay", 152 "out.3_level_array.std140.mat3x2"); 153 154 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009450, 155 "dEQP-GLES31.functional.ssbo.layout.3", 156 "_level_array.std140.row_major_mat3x2"); 157 158 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009451, 159 "dEQP-GLES31.functional.ssbo.layout.3_", 160 "level_array.std140.column_major_mat3x2"); 161 162 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009452, 163 "dEQP-GLES31.functional.ssbo.lay", 164 "out.3_level_array.std140.mat3x4"); 165 166 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009453, 167 "dEQP-GLES31.functional.ssbo.layout.3", 168 "_level_array.std140.row_major_mat3x4"); 169 170 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009454, 171 "dEQP-GLES31.functional.ssbo.layout.3_", 172 "level_array.std140.column_major_mat3x4"); 173 174 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009455, 175 "dEQP-GLES31.functional.ssbo.lay", 176 "out.3_level_array.std140.mat4x2"); 177 178 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009456, 179 "dEQP-GLES31.functional.ssbo.layout.3", 180 "_level_array.std140.row_major_mat4x2"); 181 182 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009457, 183 "dEQP-GLES31.functional.ssbo.layout.3_", 184 "level_array.std140.column_major_mat4x2"); 185 186 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009458, 187 "dEQP-GLES31.functional.ssbo.lay", 188 "out.3_level_array.std140.mat4x3"); 189 190 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009459, 191 "dEQP-GLES31.functional.ssbo.layout.3", 192 "_level_array.std140.row_major_mat4x3"); 193 194 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009460, 195 "dEQP-GLES31.functional.ssbo.layout.3_", 196 "level_array.std140.column_major_mat4x3"); 197 198 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010952, 199 "dEQP-GLES31.functional.ubo.3_l", 200 "evel_array.std140.float_vertex"); 201 202 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010953, 203 "dEQP-GLES31.functional.ubo.3_le", 204 "vel_array.std140.float_fragment"); 205 206 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010954, 207 "dEQP-GLES31.functional.ubo.3_", 208 "level_array.std140.float_both"); 209 210 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010955, 211 "dEQP-GLES31.functional.ubo.3_", 212 "level_array.std140.vec2_vertex"); 213 214 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010956, 215 "dEQP-GLES31.functional.ubo.3_l", 216 "evel_array.std140.vec2_fragment"); 217 218 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010957, 219 "dEQP-GLES31.functional.ubo.3", 220 "_level_array.std140.vec2_both"); 221 222 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010958, 223 "dEQP-GLES31.functional.ubo.3_", 224 "level_array.std140.vec3_vertex"); 225 226 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010959, 227 "dEQP-GLES31.functional.ubo.3_l", 228 "evel_array.std140.vec3_fragment"); 229 230 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010960, 231 "dEQP-GLES31.functional.ubo.3", 232 "_level_array.std140.vec3_both"); 233 234 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010961, 235 "dEQP-GLES31.functional.ubo.3_", 236 "level_array.std140.vec4_vertex"); 237 238 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010962, 239 "dEQP-GLES31.functional.ubo.3_l", 240 "evel_array.std140.vec4_fragment"); 241 242 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010963, 243 "dEQP-GLES31.functional.ubo.3", 244 "_level_array.std140.vec4_both"); 245 246 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010964, 247 "dEQP-GLES31.functional.ubo.3_", 248 "level_array.std140.int_vertex"); 249 250 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010965, 251 "dEQP-GLES31.functional.ubo.3_l", 252 "evel_array.std140.int_fragment"); 253 254 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010966, 255 "dEQP-GLES31.functional.ubo.3", 256 "_level_array.std140.int_both"); 257 258 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010967, 259 "dEQP-GLES31.functional.ubo.3_l", 260 "evel_array.std140.ivec2_vertex"); 261 262 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010968, 263 "dEQP-GLES31.functional.ubo.3_le", 264 "vel_array.std140.ivec2_fragment"); 265 266 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010969, 267 "dEQP-GLES31.functional.ubo.3_", 268 "level_array.std140.ivec2_both"); 269 270 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010970, 271 "dEQP-GLES31.functional.ubo.3_l", 272 "evel_array.std140.ivec3_vertex"); 273 274 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010971, 275 "dEQP-GLES31.functional.ubo.3_le", 276 "vel_array.std140.ivec3_fragment"); 277 278 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010972, 279 "dEQP-GLES31.functional.ubo.3_", 280 "level_array.std140.ivec3_both"); 281 282 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010973, 283 "dEQP-GLES31.functional.ubo.3_l", 284 "evel_array.std140.ivec4_vertex"); 285 286 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010974, 287 "dEQP-GLES31.functional.ubo.3_le", 288 "vel_array.std140.ivec4_fragment"); 289 290 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010975, 291 "dEQP-GLES31.functional.ubo.3_", 292 "level_array.std140.ivec4_both"); 293 294 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010976, 295 "dEQP-GLES31.functional.ubo.3_", 296 "level_array.std140.uint_vertex"); 297 298 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010977, 299 "dEQP-GLES31.functional.ubo.3_l", 300 "evel_array.std140.uint_fragment"); 301 302 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010978, 303 "dEQP-GLES31.functional.ubo.3", 304 "_level_array.std140.uint_both"); 305 306 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010979, 307 "dEQP-GLES31.functional.ubo.3_l", 308 "evel_array.std140.uvec2_vertex"); 309 310 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010980, 311 "dEQP-GLES31.functional.ubo.3_le", 312 "vel_array.std140.uvec2_fragment"); 313 314 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010981, 315 "dEQP-GLES31.functional.ubo.3_", 316 "level_array.std140.uvec2_both"); 317 318 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010982, 319 "dEQP-GLES31.functional.ubo.3_l", 320 "evel_array.std140.uvec3_vertex"); 321 322 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010983, 323 "dEQP-GLES31.functional.ubo.3_le", 324 "vel_array.std140.uvec3_fragment"); 325 326 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010984, 327 "dEQP-GLES31.functional.ubo.3_", 328 "level_array.std140.uvec3_both"); 329 330 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010985, 331 "dEQP-GLES31.functional.ubo.3_l", 332 "evel_array.std140.uvec4_vertex"); 333 334 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010986, 335 "dEQP-GLES31.functional.ubo.3_le", 336 "vel_array.std140.uvec4_fragment"); 337 338 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010987, 339 "dEQP-GLES31.functional.ubo.3_", 340 "level_array.std140.uvec4_both"); 341 342 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010988, 343 "dEQP-GLES31.functional.ubo.3_", 344 "level_array.std140.bool_vertex"); 345 346 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010989, 347 "dEQP-GLES31.functional.ubo.3_l", 348 "evel_array.std140.bool_fragment"); 349 350 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010990, 351 "dEQP-GLES31.functional.ubo.3", 352 "_level_array.std140.bool_both"); 353 354 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010991, 355 "dEQP-GLES31.functional.ubo.3_l", 356 "evel_array.std140.bvec2_vertex"); 357 358 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010992, 359 "dEQP-GLES31.functional.ubo.3_le", 360 "vel_array.std140.bvec2_fragment"); 361 362 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010993, 363 "dEQP-GLES31.functional.ubo.3_", 364 "level_array.std140.bvec2_both"); 365 366 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010994, 367 "dEQP-GLES31.functional.ubo.3_l", 368 "evel_array.std140.bvec3_vertex"); 369 370 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010995, 371 "dEQP-GLES31.functional.ubo.3_le", 372 "vel_array.std140.bvec3_fragment"); 373 374 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010996, 375 "dEQP-GLES31.functional.ubo.3_", 376 "level_array.std140.bvec3_both"); 377 378 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010997, 379 "dEQP-GLES31.functional.ubo.3_l", 380 "evel_array.std140.bvec4_vertex"); 381 382 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010998, 383 "dEQP-GLES31.functional.ubo.3_le", 384 "vel_array.std140.bvec4_fragment"); 385 386 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010999, 387 "dEQP-GLES31.functional.ubo.3_", 388 "level_array.std140.bvec4_both"); 389 390 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011000, 391 "dEQP-GLES31.functional.ubo.3_", 392 "level_array.std140.mat2_vertex"); 393 394 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011001, 395 "dEQP-GLES31.functional.ubo.3_l", 396 "evel_array.std140.mat2_fragment"); 397 398 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011002, 399 "dEQP-GLES31.functional.ubo.3", 400 "_level_array.std140.mat2_both"); 401 402 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011003, 403 "dEQP-GLES31.functional.ubo.3_level", 404 "_array.std140.row_major_mat2_vertex"); 405 406 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011004, 407 "dEQP-GLES31.functional.ubo.3_level_", 408 "array.std140.row_major_mat2_fragment"); 409 410 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011005, 411 "dEQP-GLES31.functional.ubo.3_leve", 412 "l_array.std140.row_major_mat2_both"); 413 414 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011006, 415 "dEQP-GLES31.functional.ubo.3_level_a", 416 "rray.std140.column_major_mat2_vertex"); 417 418 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011007, 419 "dEQP-GLES31.functional.ubo.3_level_ar", 420 "ray.std140.column_major_mat2_fragment"); 421 422 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011008, 423 "dEQP-GLES31.functional.ubo.3_level_", 424 "array.std140.column_major_mat2_both"); 425 426 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011009, 427 "dEQP-GLES31.functional.ubo.3_", 428 "level_array.std140.mat3_vertex"); 429 430 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011010, 431 "dEQP-GLES31.functional.ubo.3_l", 432 "evel_array.std140.mat3_fragment"); 433 434 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011011, 435 "dEQP-GLES31.functional.ubo.3", 436 "_level_array.std140.mat3_both"); 437 438 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011012, 439 "dEQP-GLES31.functional.ubo.3_level", 440 "_array.std140.row_major_mat3_vertex"); 441 442 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011013, 443 "dEQP-GLES31.functional.ubo.3_level_", 444 "array.std140.row_major_mat3_fragment"); 445 446 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011014, 447 "dEQP-GLES31.functional.ubo.3_leve", 448 "l_array.std140.row_major_mat3_both"); 449 450 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011015, 451 "dEQP-GLES31.functional.ubo.3_level_a", 452 "rray.std140.column_major_mat3_vertex"); 453 454 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011016, 455 "dEQP-GLES31.functional.ubo.3_level_ar", 456 "ray.std140.column_major_mat3_fragment"); 457 458 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011017, 459 "dEQP-GLES31.functional.ubo.3_level_", 460 "array.std140.column_major_mat3_both"); 461 462 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011018, 463 "dEQP-GLES31.functional.ubo.3_", 464 "level_array.std140.mat4_vertex"); 465 466 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011019, 467 "dEQP-GLES31.functional.ubo.3_l", 468 "evel_array.std140.mat4_fragment"); 469 470 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011020, 471 "dEQP-GLES31.functional.ubo.3", 472 "_level_array.std140.mat4_both"); 473 474 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011021, 475 "dEQP-GLES31.functional.ubo.3_level", 476 "_array.std140.row_major_mat4_vertex"); 477 478 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011022, 479 "dEQP-GLES31.functional.ubo.3_level_", 480 "array.std140.row_major_mat4_fragment"); 481 482 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011023, 483 "dEQP-GLES31.functional.ubo.3_leve", 484 "l_array.std140.row_major_mat4_both"); 485 486 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011024, 487 "dEQP-GLES31.functional.ubo.3_level_a", 488 "rray.std140.column_major_mat4_vertex"); 489 490 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011025, 491 "dEQP-GLES31.functional.ubo.3_level_ar", 492 "ray.std140.column_major_mat4_fragment"); 493 494 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011026, 495 "dEQP-GLES31.functional.ubo.3_level_", 496 "array.std140.column_major_mat4_both"); 497 498 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011027, 499 "dEQP-GLES31.functional.ubo.3_l", 500 "evel_array.std140.mat2x3_vertex"); 501 502 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011028, 503 "dEQP-GLES31.functional.ubo.3_le", 504 "vel_array.std140.mat2x3_fragment"); 505 506 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011029, 507 "dEQP-GLES31.functional.ubo.3_", 508 "level_array.std140.mat2x3_both"); 509 510 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011030, 511 "dEQP-GLES31.functional.ubo.3_level_", 512 "array.std140.row_major_mat2x3_vertex"); 513 514 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011031, 515 "dEQP-GLES31.functional.ubo.3_level_a", 516 "rray.std140.row_major_mat2x3_fragment"); 517 518 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011032, 519 "dEQP-GLES31.functional.ubo.3_level", 520 "_array.std140.row_major_mat2x3_both"); 521 522 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011033, 523 "dEQP-GLES31.functional.ubo.3_level_ar", 524 "ray.std140.column_major_mat2x3_vertex"); 525 526 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011034, 527 "dEQP-GLES31.functional.ubo.3_level_arr", 528 "ay.std140.column_major_mat2x3_fragment"); 529 530 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011035, 531 "dEQP-GLES31.functional.ubo.3_level_a", 532 "rray.std140.column_major_mat2x3_both"); 533 534 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011036, 535 "dEQP-GLES31.functional.ubo.3_l", 536 "evel_array.std140.mat2x4_vertex"); 537 538 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011037, 539 "dEQP-GLES31.functional.ubo.3_le", 540 "vel_array.std140.mat2x4_fragment"); 541 542 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011038, 543 "dEQP-GLES31.functional.ubo.3_", 544 "level_array.std140.mat2x4_both"); 545 546 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011039, 547 "dEQP-GLES31.functional.ubo.3_level_", 548 "array.std140.row_major_mat2x4_vertex"); 549 550 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011040, 551 "dEQP-GLES31.functional.ubo.3_level_a", 552 "rray.std140.row_major_mat2x4_fragment"); 553 554 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011041, 555 "dEQP-GLES31.functional.ubo.3_level", 556 "_array.std140.row_major_mat2x4_both"); 557 558 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011042, 559 "dEQP-GLES31.functional.ubo.3_level_ar", 560 "ray.std140.column_major_mat2x4_vertex"); 561 562 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011043, 563 "dEQP-GLES31.functional.ubo.3_level_arr", 564 "ay.std140.column_major_mat2x4_fragment"); 565 566 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011044, 567 "dEQP-GLES31.functional.ubo.3_level_a", 568 "rray.std140.column_major_mat2x4_both"); 569 570 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011045, 571 "dEQP-GLES31.functional.ubo.3_l", 572 "evel_array.std140.mat3x2_vertex"); 573 574 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011046, 575 "dEQP-GLES31.functional.ubo.3_le", 576 "vel_array.std140.mat3x2_fragment"); 577 578 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011047, 579 "dEQP-GLES31.functional.ubo.3_", 580 "level_array.std140.mat3x2_both"); 581 582 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011048, 583 "dEQP-GLES31.functional.ubo.3_level_", 584 "array.std140.row_major_mat3x2_vertex"); 585 586 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011049, 587 "dEQP-GLES31.functional.ubo.3_level_a", 588 "rray.std140.row_major_mat3x2_fragment"); 589 590 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011050, 591 "dEQP-GLES31.functional.ubo.3_level", 592 "_array.std140.row_major_mat3x2_both"); 593 594 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011051, 595 "dEQP-GLES31.functional.ubo.3_level_ar", 596 "ray.std140.column_major_mat3x2_vertex"); 597 598 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011052, 599 "dEQP-GLES31.functional.ubo.3_level_arr", 600 "ay.std140.column_major_mat3x2_fragment"); 601 602 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011053, 603 "dEQP-GLES31.functional.ubo.3_level_a", 604 "rray.std140.column_major_mat3x2_both"); 605 606 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011054, 607 "dEQP-GLES31.functional.ubo.3_l", 608 "evel_array.std140.mat3x4_vertex"); 609 610 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011055, 611 "dEQP-GLES31.functional.ubo.3_le", 612 "vel_array.std140.mat3x4_fragment"); 613 614 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011056, 615 "dEQP-GLES31.functional.ubo.3_", 616 "level_array.std140.mat3x4_both"); 617 618 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011057, 619 "dEQP-GLES31.functional.ubo.3_level_", 620 "array.std140.row_major_mat3x4_vertex"); 621 622 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011058, 623 "dEQP-GLES31.functional.ubo.3_level_a", 624 "rray.std140.row_major_mat3x4_fragment"); 625 626 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011059, 627 "dEQP-GLES31.functional.ubo.3_level", 628 "_array.std140.row_major_mat3x4_both"); 629 630 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011060, 631 "dEQP-GLES31.functional.ubo.3_level_ar", 632 "ray.std140.column_major_mat3x4_vertex"); 633 634 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011061, 635 "dEQP-GLES31.functional.ubo.3_level_arr", 636 "ay.std140.column_major_mat3x4_fragment"); 637 638 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011062, 639 "dEQP-GLES31.functional.ubo.3_level_a", 640 "rray.std140.column_major_mat3x4_both"); 641 642 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011063, 643 "dEQP-GLES31.functional.ubo.3_l", 644 "evel_array.std140.mat4x2_vertex"); 645 646 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011064, 647 "dEQP-GLES31.functional.ubo.3_le", 648 "vel_array.std140.mat4x2_fragment"); 649 650 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011065, 651 "dEQP-GLES31.functional.ubo.3_", 652 "level_array.std140.mat4x2_both"); 653 654 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011066, 655 "dEQP-GLES31.functional.ubo.3_level_", 656 "array.std140.row_major_mat4x2_vertex"); 657 658 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011067, 659 "dEQP-GLES31.functional.ubo.3_level_a", 660 "rray.std140.row_major_mat4x2_fragment"); 661 662 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011068, 663 "dEQP-GLES31.functional.ubo.3_level", 664 "_array.std140.row_major_mat4x2_both"); 665 666 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011069, 667 "dEQP-GLES31.functional.ubo.3_level_ar", 668 "ray.std140.column_major_mat4x2_vertex"); 669 670 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011070, 671 "dEQP-GLES31.functional.ubo.3_level_arr", 672 "ay.std140.column_major_mat4x2_fragment"); 673 674 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011071, 675 "dEQP-GLES31.functional.ubo.3_level_a", 676 "rray.std140.column_major_mat4x2_both"); 677 678 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011072, 679 "dEQP-GLES31.functional.ubo.3_l", 680 "evel_array.std140.mat4x3_vertex"); 681 682 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011073, 683 "dEQP-GLES31.functional.ubo.3_le", 684 "vel_array.std140.mat4x3_fragment"); 685 686 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011074, 687 "dEQP-GLES31.functional.ubo.3_", 688 "level_array.std140.mat4x3_both"); 689 690 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011075, 691 "dEQP-GLES31.functional.ubo.3_level_", 692 "array.std140.row_major_mat4x3_vertex"); 693 694 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011076, 695 "dEQP-GLES31.functional.ubo.3_level_a", 696 "rray.std140.row_major_mat4x3_fragment"); 697 698 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011077, 699 "dEQP-GLES31.functional.ubo.3_level", 700 "_array.std140.row_major_mat4x3_both"); 701 702 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011078, 703 "dEQP-GLES31.functional.ubo.3_level_ar", 704 "ray.std140.column_major_mat4x3_vertex"); 705 706 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011079, 707 "dEQP-GLES31.functional.ubo.3_level_arr", 708 "ay.std140.column_major_mat4x3_fragment"); 709 710 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_011080, 711 "dEQP-GLES31.functional.ubo.3_level_a", 712 "rray.std140.column_major_mat4x3_both"); 713