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_009246, 27 "dEQP-GLES31.functional.ssbo.la", 28 "yout.2_level_array.std140.float"); 29 30 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009247, 31 "dEQP-GLES31.functional.ssbo.la", 32 "yout.2_level_array.std140.vec2"); 33 34 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009248, 35 "dEQP-GLES31.functional.ssbo.la", 36 "yout.2_level_array.std140.vec3"); 37 38 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009249, 39 "dEQP-GLES31.functional.ssbo.la", 40 "yout.2_level_array.std140.vec4"); 41 42 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009250, 43 "dEQP-GLES31.functional.ssbo.l", 44 "ayout.2_level_array.std140.int"); 45 46 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009251, 47 "dEQP-GLES31.functional.ssbo.la", 48 "yout.2_level_array.std140.ivec2"); 49 50 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009252, 51 "dEQP-GLES31.functional.ssbo.la", 52 "yout.2_level_array.std140.ivec3"); 53 54 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009253, 55 "dEQP-GLES31.functional.ssbo.la", 56 "yout.2_level_array.std140.ivec4"); 57 58 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009254, 59 "dEQP-GLES31.functional.ssbo.la", 60 "yout.2_level_array.std140.uint"); 61 62 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009255, 63 "dEQP-GLES31.functional.ssbo.la", 64 "yout.2_level_array.std140.uvec2"); 65 66 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009256, 67 "dEQP-GLES31.functional.ssbo.la", 68 "yout.2_level_array.std140.uvec3"); 69 70 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009257, 71 "dEQP-GLES31.functional.ssbo.la", 72 "yout.2_level_array.std140.uvec4"); 73 74 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009258, 75 "dEQP-GLES31.functional.ssbo.la", 76 "yout.2_level_array.std140.bool"); 77 78 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009259, 79 "dEQP-GLES31.functional.ssbo.la", 80 "yout.2_level_array.std140.bvec2"); 81 82 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009260, 83 "dEQP-GLES31.functional.ssbo.la", 84 "yout.2_level_array.std140.bvec3"); 85 86 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009261, 87 "dEQP-GLES31.functional.ssbo.la", 88 "yout.2_level_array.std140.bvec4"); 89 90 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009262, 91 "dEQP-GLES31.functional.ssbo.la", 92 "yout.2_level_array.std140.mat2"); 93 94 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009263, 95 "dEQP-GLES31.functional.ssbo.layout.", 96 "2_level_array.std140.row_major_mat2"); 97 98 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009264, 99 "dEQP-GLES31.functional.ssbo.layout.2", 100 "_level_array.std140.column_major_mat2"); 101 102 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009265, 103 "dEQP-GLES31.functional.ssbo.la", 104 "yout.2_level_array.std140.mat3"); 105 106 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009266, 107 "dEQP-GLES31.functional.ssbo.layout.", 108 "2_level_array.std140.row_major_mat3"); 109 110 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009267, 111 "dEQP-GLES31.functional.ssbo.layout.2", 112 "_level_array.std140.column_major_mat3"); 113 114 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009268, 115 "dEQP-GLES31.functional.ssbo.la", 116 "yout.2_level_array.std140.mat4"); 117 118 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009269, 119 "dEQP-GLES31.functional.ssbo.layout.", 120 "2_level_array.std140.row_major_mat4"); 121 122 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009270, 123 "dEQP-GLES31.functional.ssbo.layout.2", 124 "_level_array.std140.column_major_mat4"); 125 126 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009271, 127 "dEQP-GLES31.functional.ssbo.lay", 128 "out.2_level_array.std140.mat2x3"); 129 130 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009272, 131 "dEQP-GLES31.functional.ssbo.layout.2", 132 "_level_array.std140.row_major_mat2x3"); 133 134 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009273, 135 "dEQP-GLES31.functional.ssbo.layout.2_", 136 "level_array.std140.column_major_mat2x3"); 137 138 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009274, 139 "dEQP-GLES31.functional.ssbo.lay", 140 "out.2_level_array.std140.mat2x4"); 141 142 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009275, 143 "dEQP-GLES31.functional.ssbo.layout.2", 144 "_level_array.std140.row_major_mat2x4"); 145 146 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009276, 147 "dEQP-GLES31.functional.ssbo.layout.2_", 148 "level_array.std140.column_major_mat2x4"); 149 150 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009277, 151 "dEQP-GLES31.functional.ssbo.lay", 152 "out.2_level_array.std140.mat3x2"); 153 154 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009278, 155 "dEQP-GLES31.functional.ssbo.layout.2", 156 "_level_array.std140.row_major_mat3x2"); 157 158 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009279, 159 "dEQP-GLES31.functional.ssbo.layout.2_", 160 "level_array.std140.column_major_mat3x2"); 161 162 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009280, 163 "dEQP-GLES31.functional.ssbo.lay", 164 "out.2_level_array.std140.mat3x4"); 165 166 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009281, 167 "dEQP-GLES31.functional.ssbo.layout.2", 168 "_level_array.std140.row_major_mat3x4"); 169 170 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009282, 171 "dEQP-GLES31.functional.ssbo.layout.2_", 172 "level_array.std140.column_major_mat3x4"); 173 174 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009283, 175 "dEQP-GLES31.functional.ssbo.lay", 176 "out.2_level_array.std140.mat4x2"); 177 178 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009284, 179 "dEQP-GLES31.functional.ssbo.layout.2", 180 "_level_array.std140.row_major_mat4x2"); 181 182 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009285, 183 "dEQP-GLES31.functional.ssbo.layout.2_", 184 "level_array.std140.column_major_mat4x2"); 185 186 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009286, 187 "dEQP-GLES31.functional.ssbo.lay", 188 "out.2_level_array.std140.mat4x3"); 189 190 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009287, 191 "dEQP-GLES31.functional.ssbo.layout.2", 192 "_level_array.std140.row_major_mat4x3"); 193 194 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_009288, 195 "dEQP-GLES31.functional.ssbo.layout.2_", 196 "level_array.std140.column_major_mat4x3"); 197 198 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010608, 199 "dEQP-GLES31.functional.ubo.2_l", 200 "evel_array.std140.float_vertex"); 201 202 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010609, 203 "dEQP-GLES31.functional.ubo.2_le", 204 "vel_array.std140.float_fragment"); 205 206 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010610, 207 "dEQP-GLES31.functional.ubo.2_", 208 "level_array.std140.float_both"); 209 210 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010611, 211 "dEQP-GLES31.functional.ubo.2_", 212 "level_array.std140.vec2_vertex"); 213 214 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010612, 215 "dEQP-GLES31.functional.ubo.2_l", 216 "evel_array.std140.vec2_fragment"); 217 218 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010613, 219 "dEQP-GLES31.functional.ubo.2", 220 "_level_array.std140.vec2_both"); 221 222 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010614, 223 "dEQP-GLES31.functional.ubo.2_", 224 "level_array.std140.vec3_vertex"); 225 226 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010615, 227 "dEQP-GLES31.functional.ubo.2_l", 228 "evel_array.std140.vec3_fragment"); 229 230 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010616, 231 "dEQP-GLES31.functional.ubo.2", 232 "_level_array.std140.vec3_both"); 233 234 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010617, 235 "dEQP-GLES31.functional.ubo.2_", 236 "level_array.std140.vec4_vertex"); 237 238 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010618, 239 "dEQP-GLES31.functional.ubo.2_l", 240 "evel_array.std140.vec4_fragment"); 241 242 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010619, 243 "dEQP-GLES31.functional.ubo.2", 244 "_level_array.std140.vec4_both"); 245 246 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010620, 247 "dEQP-GLES31.functional.ubo.2_", 248 "level_array.std140.int_vertex"); 249 250 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010621, 251 "dEQP-GLES31.functional.ubo.2_l", 252 "evel_array.std140.int_fragment"); 253 254 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010622, 255 "dEQP-GLES31.functional.ubo.2", 256 "_level_array.std140.int_both"); 257 258 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010623, 259 "dEQP-GLES31.functional.ubo.2_l", 260 "evel_array.std140.ivec2_vertex"); 261 262 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010624, 263 "dEQP-GLES31.functional.ubo.2_le", 264 "vel_array.std140.ivec2_fragment"); 265 266 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010625, 267 "dEQP-GLES31.functional.ubo.2_", 268 "level_array.std140.ivec2_both"); 269 270 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010626, 271 "dEQP-GLES31.functional.ubo.2_l", 272 "evel_array.std140.ivec3_vertex"); 273 274 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010627, 275 "dEQP-GLES31.functional.ubo.2_le", 276 "vel_array.std140.ivec3_fragment"); 277 278 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010628, 279 "dEQP-GLES31.functional.ubo.2_", 280 "level_array.std140.ivec3_both"); 281 282 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010629, 283 "dEQP-GLES31.functional.ubo.2_l", 284 "evel_array.std140.ivec4_vertex"); 285 286 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010630, 287 "dEQP-GLES31.functional.ubo.2_le", 288 "vel_array.std140.ivec4_fragment"); 289 290 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010631, 291 "dEQP-GLES31.functional.ubo.2_", 292 "level_array.std140.ivec4_both"); 293 294 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010632, 295 "dEQP-GLES31.functional.ubo.2_", 296 "level_array.std140.uint_vertex"); 297 298 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010633, 299 "dEQP-GLES31.functional.ubo.2_l", 300 "evel_array.std140.uint_fragment"); 301 302 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010634, 303 "dEQP-GLES31.functional.ubo.2", 304 "_level_array.std140.uint_both"); 305 306 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010635, 307 "dEQP-GLES31.functional.ubo.2_l", 308 "evel_array.std140.uvec2_vertex"); 309 310 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010636, 311 "dEQP-GLES31.functional.ubo.2_le", 312 "vel_array.std140.uvec2_fragment"); 313 314 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010637, 315 "dEQP-GLES31.functional.ubo.2_", 316 "level_array.std140.uvec2_both"); 317 318 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010638, 319 "dEQP-GLES31.functional.ubo.2_l", 320 "evel_array.std140.uvec3_vertex"); 321 322 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010639, 323 "dEQP-GLES31.functional.ubo.2_le", 324 "vel_array.std140.uvec3_fragment"); 325 326 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010640, 327 "dEQP-GLES31.functional.ubo.2_", 328 "level_array.std140.uvec3_both"); 329 330 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010641, 331 "dEQP-GLES31.functional.ubo.2_l", 332 "evel_array.std140.uvec4_vertex"); 333 334 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010642, 335 "dEQP-GLES31.functional.ubo.2_le", 336 "vel_array.std140.uvec4_fragment"); 337 338 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010643, 339 "dEQP-GLES31.functional.ubo.2_", 340 "level_array.std140.uvec4_both"); 341 342 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010644, 343 "dEQP-GLES31.functional.ubo.2_", 344 "level_array.std140.bool_vertex"); 345 346 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010645, 347 "dEQP-GLES31.functional.ubo.2_l", 348 "evel_array.std140.bool_fragment"); 349 350 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010646, 351 "dEQP-GLES31.functional.ubo.2", 352 "_level_array.std140.bool_both"); 353 354 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010647, 355 "dEQP-GLES31.functional.ubo.2_l", 356 "evel_array.std140.bvec2_vertex"); 357 358 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010648, 359 "dEQP-GLES31.functional.ubo.2_le", 360 "vel_array.std140.bvec2_fragment"); 361 362 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010649, 363 "dEQP-GLES31.functional.ubo.2_", 364 "level_array.std140.bvec2_both"); 365 366 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010650, 367 "dEQP-GLES31.functional.ubo.2_l", 368 "evel_array.std140.bvec3_vertex"); 369 370 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010651, 371 "dEQP-GLES31.functional.ubo.2_le", 372 "vel_array.std140.bvec3_fragment"); 373 374 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010652, 375 "dEQP-GLES31.functional.ubo.2_", 376 "level_array.std140.bvec3_both"); 377 378 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010653, 379 "dEQP-GLES31.functional.ubo.2_l", 380 "evel_array.std140.bvec4_vertex"); 381 382 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010654, 383 "dEQP-GLES31.functional.ubo.2_le", 384 "vel_array.std140.bvec4_fragment"); 385 386 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010655, 387 "dEQP-GLES31.functional.ubo.2_", 388 "level_array.std140.bvec4_both"); 389 390 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010656, 391 "dEQP-GLES31.functional.ubo.2_", 392 "level_array.std140.mat2_vertex"); 393 394 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010657, 395 "dEQP-GLES31.functional.ubo.2_l", 396 "evel_array.std140.mat2_fragment"); 397 398 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010658, 399 "dEQP-GLES31.functional.ubo.2", 400 "_level_array.std140.mat2_both"); 401 402 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010659, 403 "dEQP-GLES31.functional.ubo.2_level", 404 "_array.std140.row_major_mat2_vertex"); 405 406 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010660, 407 "dEQP-GLES31.functional.ubo.2_level_", 408 "array.std140.row_major_mat2_fragment"); 409 410 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010661, 411 "dEQP-GLES31.functional.ubo.2_leve", 412 "l_array.std140.row_major_mat2_both"); 413 414 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010662, 415 "dEQP-GLES31.functional.ubo.2_level_a", 416 "rray.std140.column_major_mat2_vertex"); 417 418 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010663, 419 "dEQP-GLES31.functional.ubo.2_level_ar", 420 "ray.std140.column_major_mat2_fragment"); 421 422 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010664, 423 "dEQP-GLES31.functional.ubo.2_level_", 424 "array.std140.column_major_mat2_both"); 425 426 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010665, 427 "dEQP-GLES31.functional.ubo.2_", 428 "level_array.std140.mat3_vertex"); 429 430 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010666, 431 "dEQP-GLES31.functional.ubo.2_l", 432 "evel_array.std140.mat3_fragment"); 433 434 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010667, 435 "dEQP-GLES31.functional.ubo.2", 436 "_level_array.std140.mat3_both"); 437 438 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010668, 439 "dEQP-GLES31.functional.ubo.2_level", 440 "_array.std140.row_major_mat3_vertex"); 441 442 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010669, 443 "dEQP-GLES31.functional.ubo.2_level_", 444 "array.std140.row_major_mat3_fragment"); 445 446 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010670, 447 "dEQP-GLES31.functional.ubo.2_leve", 448 "l_array.std140.row_major_mat3_both"); 449 450 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010671, 451 "dEQP-GLES31.functional.ubo.2_level_a", 452 "rray.std140.column_major_mat3_vertex"); 453 454 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010672, 455 "dEQP-GLES31.functional.ubo.2_level_ar", 456 "ray.std140.column_major_mat3_fragment"); 457 458 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010673, 459 "dEQP-GLES31.functional.ubo.2_level_", 460 "array.std140.column_major_mat3_both"); 461 462 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010674, 463 "dEQP-GLES31.functional.ubo.2_", 464 "level_array.std140.mat4_vertex"); 465 466 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010675, 467 "dEQP-GLES31.functional.ubo.2_l", 468 "evel_array.std140.mat4_fragment"); 469 470 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010676, 471 "dEQP-GLES31.functional.ubo.2", 472 "_level_array.std140.mat4_both"); 473 474 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010677, 475 "dEQP-GLES31.functional.ubo.2_level", 476 "_array.std140.row_major_mat4_vertex"); 477 478 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010678, 479 "dEQP-GLES31.functional.ubo.2_level_", 480 "array.std140.row_major_mat4_fragment"); 481 482 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010679, 483 "dEQP-GLES31.functional.ubo.2_leve", 484 "l_array.std140.row_major_mat4_both"); 485 486 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010680, 487 "dEQP-GLES31.functional.ubo.2_level_a", 488 "rray.std140.column_major_mat4_vertex"); 489 490 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010681, 491 "dEQP-GLES31.functional.ubo.2_level_ar", 492 "ray.std140.column_major_mat4_fragment"); 493 494 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010682, 495 "dEQP-GLES31.functional.ubo.2_level_", 496 "array.std140.column_major_mat4_both"); 497 498 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010683, 499 "dEQP-GLES31.functional.ubo.2_l", 500 "evel_array.std140.mat2x3_vertex"); 501 502 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010684, 503 "dEQP-GLES31.functional.ubo.2_le", 504 "vel_array.std140.mat2x3_fragment"); 505 506 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010685, 507 "dEQP-GLES31.functional.ubo.2_", 508 "level_array.std140.mat2x3_both"); 509 510 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010686, 511 "dEQP-GLES31.functional.ubo.2_level_", 512 "array.std140.row_major_mat2x3_vertex"); 513 514 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010687, 515 "dEQP-GLES31.functional.ubo.2_level_a", 516 "rray.std140.row_major_mat2x3_fragment"); 517 518 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010688, 519 "dEQP-GLES31.functional.ubo.2_level", 520 "_array.std140.row_major_mat2x3_both"); 521 522 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010689, 523 "dEQP-GLES31.functional.ubo.2_level_ar", 524 "ray.std140.column_major_mat2x3_vertex"); 525 526 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010690, 527 "dEQP-GLES31.functional.ubo.2_level_arr", 528 "ay.std140.column_major_mat2x3_fragment"); 529 530 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010691, 531 "dEQP-GLES31.functional.ubo.2_level_a", 532 "rray.std140.column_major_mat2x3_both"); 533 534 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010692, 535 "dEQP-GLES31.functional.ubo.2_l", 536 "evel_array.std140.mat2x4_vertex"); 537 538 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010693, 539 "dEQP-GLES31.functional.ubo.2_le", 540 "vel_array.std140.mat2x4_fragment"); 541 542 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010694, 543 "dEQP-GLES31.functional.ubo.2_", 544 "level_array.std140.mat2x4_both"); 545 546 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010695, 547 "dEQP-GLES31.functional.ubo.2_level_", 548 "array.std140.row_major_mat2x4_vertex"); 549 550 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010696, 551 "dEQP-GLES31.functional.ubo.2_level_a", 552 "rray.std140.row_major_mat2x4_fragment"); 553 554 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010697, 555 "dEQP-GLES31.functional.ubo.2_level", 556 "_array.std140.row_major_mat2x4_both"); 557 558 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010698, 559 "dEQP-GLES31.functional.ubo.2_level_ar", 560 "ray.std140.column_major_mat2x4_vertex"); 561 562 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010699, 563 "dEQP-GLES31.functional.ubo.2_level_arr", 564 "ay.std140.column_major_mat2x4_fragment"); 565 566 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010700, 567 "dEQP-GLES31.functional.ubo.2_level_a", 568 "rray.std140.column_major_mat2x4_both"); 569 570 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010701, 571 "dEQP-GLES31.functional.ubo.2_l", 572 "evel_array.std140.mat3x2_vertex"); 573 574 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010702, 575 "dEQP-GLES31.functional.ubo.2_le", 576 "vel_array.std140.mat3x2_fragment"); 577 578 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010703, 579 "dEQP-GLES31.functional.ubo.2_", 580 "level_array.std140.mat3x2_both"); 581 582 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010704, 583 "dEQP-GLES31.functional.ubo.2_level_", 584 "array.std140.row_major_mat3x2_vertex"); 585 586 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010705, 587 "dEQP-GLES31.functional.ubo.2_level_a", 588 "rray.std140.row_major_mat3x2_fragment"); 589 590 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010706, 591 "dEQP-GLES31.functional.ubo.2_level", 592 "_array.std140.row_major_mat3x2_both"); 593 594 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010707, 595 "dEQP-GLES31.functional.ubo.2_level_ar", 596 "ray.std140.column_major_mat3x2_vertex"); 597 598 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010708, 599 "dEQP-GLES31.functional.ubo.2_level_arr", 600 "ay.std140.column_major_mat3x2_fragment"); 601 602 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010709, 603 "dEQP-GLES31.functional.ubo.2_level_a", 604 "rray.std140.column_major_mat3x2_both"); 605 606 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010710, 607 "dEQP-GLES31.functional.ubo.2_l", 608 "evel_array.std140.mat3x4_vertex"); 609 610 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010711, 611 "dEQP-GLES31.functional.ubo.2_le", 612 "vel_array.std140.mat3x4_fragment"); 613 614 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010712, 615 "dEQP-GLES31.functional.ubo.2_", 616 "level_array.std140.mat3x4_both"); 617 618 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010713, 619 "dEQP-GLES31.functional.ubo.2_level_", 620 "array.std140.row_major_mat3x4_vertex"); 621 622 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010714, 623 "dEQP-GLES31.functional.ubo.2_level_a", 624 "rray.std140.row_major_mat3x4_fragment"); 625 626 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010715, 627 "dEQP-GLES31.functional.ubo.2_level", 628 "_array.std140.row_major_mat3x4_both"); 629 630 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010716, 631 "dEQP-GLES31.functional.ubo.2_level_ar", 632 "ray.std140.column_major_mat3x4_vertex"); 633 634 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010717, 635 "dEQP-GLES31.functional.ubo.2_level_arr", 636 "ay.std140.column_major_mat3x4_fragment"); 637 638 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010718, 639 "dEQP-GLES31.functional.ubo.2_level_a", 640 "rray.std140.column_major_mat3x4_both"); 641 642 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010719, 643 "dEQP-GLES31.functional.ubo.2_l", 644 "evel_array.std140.mat4x2_vertex"); 645 646 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010720, 647 "dEQP-GLES31.functional.ubo.2_le", 648 "vel_array.std140.mat4x2_fragment"); 649 650 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010721, 651 "dEQP-GLES31.functional.ubo.2_", 652 "level_array.std140.mat4x2_both"); 653 654 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010722, 655 "dEQP-GLES31.functional.ubo.2_level_", 656 "array.std140.row_major_mat4x2_vertex"); 657 658 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010723, 659 "dEQP-GLES31.functional.ubo.2_level_a", 660 "rray.std140.row_major_mat4x2_fragment"); 661 662 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010724, 663 "dEQP-GLES31.functional.ubo.2_level", 664 "_array.std140.row_major_mat4x2_both"); 665 666 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010725, 667 "dEQP-GLES31.functional.ubo.2_level_ar", 668 "ray.std140.column_major_mat4x2_vertex"); 669 670 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010726, 671 "dEQP-GLES31.functional.ubo.2_level_arr", 672 "ay.std140.column_major_mat4x2_fragment"); 673 674 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010727, 675 "dEQP-GLES31.functional.ubo.2_level_a", 676 "rray.std140.column_major_mat4x2_both"); 677 678 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010728, 679 "dEQP-GLES31.functional.ubo.2_l", 680 "evel_array.std140.mat4x3_vertex"); 681 682 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010729, 683 "dEQP-GLES31.functional.ubo.2_le", 684 "vel_array.std140.mat4x3_fragment"); 685 686 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010730, 687 "dEQP-GLES31.functional.ubo.2_", 688 "level_array.std140.mat4x3_both"); 689 690 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010731, 691 "dEQP-GLES31.functional.ubo.2_level_", 692 "array.std140.row_major_mat4x3_vertex"); 693 694 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010732, 695 "dEQP-GLES31.functional.ubo.2_level_a", 696 "rray.std140.row_major_mat4x3_fragment"); 697 698 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010733, 699 "dEQP-GLES31.functional.ubo.2_level", 700 "_array.std140.row_major_mat4x3_both"); 701 702 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010734, 703 "dEQP-GLES31.functional.ubo.2_level_ar", 704 "ray.std140.column_major_mat4x3_vertex"); 705 706 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010735, 707 "dEQP-GLES31.functional.ubo.2_level_arr", 708 "ay.std140.column_major_mat4x3_fragment"); 709 710 static SHRINK_HWTEST_F(ActsDeqpgles310010TestSuite, TestCase_010736, 711 "dEQP-GLES31.functional.ubo.2_level_a", 712 "rray.std140.column_major_mat4x3_both"); 713