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 "../Deqpgles3BaseFunc.h"
19#include "../ActsDeqpgles30033TestSuite.h"
20#include "shrinkdefine.h"
21
22using namespace std;
23using namespace testing::ext;
24using namespace OHOS;
25
26static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032773,
27        "dEQP-GLES3.functional.fbo.i",
28        "nvalidate.whole.render_none");
29
30static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032774,
31        "dEQP-GLES3.functional.fbo.i",
32        "nvalidate.whole.render_color");
33
34static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032775,
35        "dEQP-GLES3.functional.fbo.i",
36        "nvalidate.whole.render_depth");
37
38static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032776,
39        "dEQP-GLES3.functional.fbo.in",
40        "validate.whole.render_stencil");
41
42static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032777,
43        "dEQP-GLES3.functional.fbo.inval",
44        "idate.whole.render_depth_stencil");
45
46static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032778,
47        "dEQP-GLES3.functional.fbo.",
48        "invalidate.whole.render_all");
49
50static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032779,
51        "dEQP-GLES3.functional.fbo.inva",
52        "lidate.whole.unbind_read_color");
53
54static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032780,
55        "dEQP-GLES3.functional.fbo.inva",
56        "lidate.whole.unbind_read_depth");
57
58static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032781,
59        "dEQP-GLES3.functional.fbo.inval",
60        "idate.whole.unbind_read_stencil");
61
62static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032782,
63        "dEQP-GLES3.functional.fbo.invalida",
64        "te.whole.unbind_read_depth_stencil");
65
66static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032783,
67        "dEQP-GLES3.functional.fbo.invalida",
68        "te.whole.unbind_read_color_stencil");
69
70static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032784,
71        "dEQP-GLES3.functional.fbo.inva",
72        "lidate.whole.unbind_blit_color");
73
74static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032785,
75        "dEQP-GLES3.functional.fbo.inva",
76        "lidate.whole.unbind_blit_depth");
77
78static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032786,
79        "dEQP-GLES3.functional.fbo.inval",
80        "idate.whole.unbind_blit_stencil");
81
82static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032787,
83        "dEQP-GLES3.functional.fbo.invalida",
84        "te.whole.unbind_blit_depth_stencil");
85
86static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032788,
87        "dEQP-GLES3.functional.fbo.invali",
88        "date.whole.unbind_blit_msaa_color");
89
90static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032789,
91        "dEQP-GLES3.functional.fbo.invali",
92        "date.whole.unbind_blit_msaa_depth");
93
94static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032790,
95        "dEQP-GLES3.functional.fbo.invalid",
96        "ate.whole.unbind_blit_msaa_stencil");
97
98static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032791,
99        "dEQP-GLES3.functional.fbo.invalidate",
100        ".whole.unbind_blit_msaa_depth_stencil");
101