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 "../ActsDeqpgles310006TestSuite.h"
20#include "shrinkdefine.h"
21
22using namespace std;
23using namespace testing::ext;
24using namespace OHOS;
25
26static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005651,
27        "dEQP-GLES31.functional.shaders.implicit_con",
28        "versions.es31.functions.int_to_float_vertex");
29
30static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005652,
31        "dEQP-GLES31.functional.shaders.implicit_conv",
32        "ersions.es31.functions.int_to_float_fragment");
33
34static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005653,
35        "dEQP-GLES31.functional.shaders.implicit_co",
36        "nversions.es31.functions.int_to_uint_vertex");
37
38static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005654,
39        "dEQP-GLES31.functional.shaders.implicit_con",
40        "versions.es31.functions.int_to_uint_fragment");
41
42static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005655,
43        "dEQP-GLES31.functional.shaders.implicit_con",
44        "versions.es31.functions.uint_to_float_vertex");
45
46static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005656,
47        "dEQP-GLES31.functional.shaders.implicit_conv",
48        "ersions.es31.functions.uint_to_float_fragment");
49
50static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005657,
51        "dEQP-GLES31.functional.shaders.implicit_conv",
52        "ersions.es31.functions.ivec2_to_uvec2_vertex");
53
54static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005658,
55        "dEQP-GLES31.functional.shaders.implicit_conve",
56        "rsions.es31.functions.ivec2_to_uvec2_fragment");
57
58static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005659,
59        "dEQP-GLES31.functional.shaders.implicit_con",
60        "versions.es31.functions.ivec2_to_vec2_vertex");
61
62static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005660,
63        "dEQP-GLES31.functional.shaders.implicit_conv",
64        "ersions.es31.functions.ivec2_to_vec2_fragment");
65
66static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005661,
67        "dEQP-GLES31.functional.shaders.implicit_con",
68        "versions.es31.functions.uvec2_to_vec2_vertex");
69
70static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005662,
71        "dEQP-GLES31.functional.shaders.implicit_conv",
72        "ersions.es31.functions.uvec2_to_vec2_fragment");
73
74static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005663,
75        "dEQP-GLES31.functional.shaders.implicit_conv",
76        "ersions.es31.functions.ivec3_to_uvec3_vertex");
77
78static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005664,
79        "dEQP-GLES31.functional.shaders.implicit_conve",
80        "rsions.es31.functions.ivec3_to_uvec3_fragment");
81
82static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005665,
83        "dEQP-GLES31.functional.shaders.implicit_con",
84        "versions.es31.functions.ivec3_to_vec3_vertex");
85
86static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005666,
87        "dEQP-GLES31.functional.shaders.implicit_conv",
88        "ersions.es31.functions.ivec3_to_vec3_fragment");
89
90static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005667,
91        "dEQP-GLES31.functional.shaders.implicit_con",
92        "versions.es31.functions.uvec3_to_vec3_vertex");
93
94static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005668,
95        "dEQP-GLES31.functional.shaders.implicit_conv",
96        "ersions.es31.functions.uvec3_to_vec3_fragment");
97
98static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005669,
99        "dEQP-GLES31.functional.shaders.implicit_conv",
100        "ersions.es31.functions.ivec4_to_uvec4_vertex");
101
102static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005670,
103        "dEQP-GLES31.functional.shaders.implicit_conve",
104        "rsions.es31.functions.ivec4_to_uvec4_fragment");
105
106static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005671,
107        "dEQP-GLES31.functional.shaders.implicit_con",
108        "versions.es31.functions.ivec4_to_vec4_vertex");
109
110static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005672,
111        "dEQP-GLES31.functional.shaders.implicit_conv",
112        "ersions.es31.functions.ivec4_to_vec4_fragment");
113
114static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005673,
115        "dEQP-GLES31.functional.shaders.implicit_con",
116        "versions.es31.functions.uvec4_to_vec4_vertex");
117
118static SHRINK_HWTEST_F(ActsDeqpgles310006TestSuite, TestCase_005674,
119        "dEQP-GLES31.functional.shaders.implicit_conv",
120        "ersions.es31.functions.uvec4_to_vec4_fragment");
121