xref: /aosp_15_r20/external/deqp/external/openglcts/modules/gles2/es2cTestPackage.hpp (revision 35238bce31c2a825756842865a792f8cf7f89930)
1 #ifndef _ES2CTESTPACKAGE_HPP
2 #define _ES2CTESTPACKAGE_HPP
3 /*-------------------------------------------------------------------------
4  * OpenGL Conformance Test Suite
5  * -----------------------------
6  *
7  * Copyright (c) 2016 Google Inc.
8  * Copyright (c) 2016 The Khronos Group Inc.
9  *
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  *      http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  *
22  */ /*!
23  * \file
24  * \brief OpenGL ES 2 Test Package.
25  */ /*-------------------------------------------------------------------*/
26 
27 #ifndef _TCUDEFS_HPP
28 #include "tcuDefs.hpp"
29 #endif
30 #ifndef _GLCTESTPACKAGE_HPP
31 #include "glcTestPackage.hpp"
32 #endif
33 #ifndef _DESHAREDPTR_HPP
34 #include "deSharedPtr.hpp"
35 #endif
36 
37 namespace tcu
38 {
39 class WaiverUtil;
40 }
41 
42 namespace es2cts
43 {
44 
45 class TestPackage : public deqp::TestPackage
46 {
47 public:
48     TestPackage(tcu::TestContext &testCtx, const char *packageName);
49     ~TestPackage(void);
50 
51     void init(void);
52 
53     virtual tcu::TestCaseExecutor *createExecutor(void) const;
54 
55 private:
56     TestPackage(const TestPackage &other);
57     TestPackage &operator=(const TestPackage &other);
58 };
59 
60 } // namespace es2cts
61 
62 #endif // _ES2CTESTPACKAGE_HPP
63