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_032792,
27        "dEQP-GLES3.functional.fbo.",
28        "invalidate.sub.render_none");
29
30static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032793,
31        "dEQP-GLES3.functional.fbo.",
32        "invalidate.sub.render_color");
33
34static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032794,
35        "dEQP-GLES3.functional.fbo.",
36        "invalidate.sub.render_depth");
37
38static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032795,
39        "dEQP-GLES3.functional.fbo.i",
40        "nvalidate.sub.render_stencil");
41
42static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032796,
43        "dEQP-GLES3.functional.fbo.inva",
44        "lidate.sub.render_depth_stencil");
45
46static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032797,
47        "dEQP-GLES3.functional.fbo",
48        ".invalidate.sub.render_all");
49
50static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032798,
51        "dEQP-GLES3.functional.fbo.inv",
52        "alidate.sub.unbind_read_color");
53
54static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032799,
55        "dEQP-GLES3.functional.fbo.inv",
56        "alidate.sub.unbind_read_depth");
57
58static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032800,
59        "dEQP-GLES3.functional.fbo.inva",
60        "lidate.sub.unbind_read_stencil");
61
62static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032801,
63        "dEQP-GLES3.functional.fbo.invalid",
64        "ate.sub.unbind_read_depth_stencil");
65
66static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032802,
67        "dEQP-GLES3.functional.fbo.invalid",
68        "ate.sub.unbind_read_color_stencil");
69
70static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032803,
71        "dEQP-GLES3.functional.fbo.inv",
72        "alidate.sub.unbind_blit_color");
73
74static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032804,
75        "dEQP-GLES3.functional.fbo.inv",
76        "alidate.sub.unbind_blit_depth");
77
78static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032805,
79        "dEQP-GLES3.functional.fbo.inva",
80        "lidate.sub.unbind_blit_stencil");
81
82static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032806,
83        "dEQP-GLES3.functional.fbo.invalid",
84        "ate.sub.unbind_blit_depth_stencil");
85
86static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032807,
87        "dEQP-GLES3.functional.fbo.inval",
88        "idate.sub.unbind_blit_msaa_color");
89
90static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032808,
91        "dEQP-GLES3.functional.fbo.inval",
92        "idate.sub.unbind_blit_msaa_depth");
93
94static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032809,
95        "dEQP-GLES3.functional.fbo.invali",
96        "date.sub.unbind_blit_msaa_stencil");
97
98static SHRINK_HWTEST_F(ActsDeqpgles30033TestSuite, TestCase_032810,
99        "dEQP-GLES3.functional.fbo.invalidat",
100        "e.sub.unbind_blit_msaa_depth_stencil");
101