xref: /aosp_15_r20/external/deqp/external/openglcts/modules/gles3/es3cCopyTexImageConversionsTests.hpp (revision 35238bce31c2a825756842865a792f8cf7f89930)
1 #ifndef _ES3CCOPYTEXIMAGECONVERSIONSTESTS_HPP
2 #define _ES3CCOPYTEXIMAGECONVERSIONSTESTS_HPP
3 
4 /*-------------------------------------------------------------------------
5  * OpenGL Conformance Test Suite
6  * -----------------------------
7  *
8  * Copyright (c) 2018 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 es3cCopyTexImageConversionsTests.hpp
24  * \brief Tests verifying glCopyTexImage2D.
25  */ /*-------------------------------------------------------------------*/
26 
27 #include "glcTestCase.hpp"
28 #include "glwDefs.hpp"
29 #include "tcuDefs.hpp"
30 
31 namespace es3cts
32 {
33 
34 class CopyTexImageConversionsTests : public deqp::TestCaseGroup
35 {
36 public:
37     CopyTexImageConversionsTests(deqp::Context &context);
38 
39     virtual void init(void);
40 
41 private:
42     CopyTexImageConversionsTests(const CopyTexImageConversionsTests &other);
43     CopyTexImageConversionsTests &operator=(const CopyTexImageConversionsTests &other);
44 };
45 } // namespace es3cts
46 
47 #endif // _ES3CCOPYTEXIMAGECONVERSIONSTESTS_HPP
48