1 #ifndef _ES3CTESTPACKAGE_HPP 2 #define _ES3CTESTPACKAGE_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 3 Test Package. 25 */ /*-------------------------------------------------------------------*/ 26 27 #include "glcTestPackage.hpp" 28 #include "tcuDefs.hpp" 29 #include "deSharedPtr.hpp" 30 31 namespace tcu 32 { 33 class WaiverUtil; 34 } 35 36 namespace es3cts 37 { 38 39 class ES30TestPackage : public deqp::TestPackage 40 { 41 public: 42 ES30TestPackage(tcu::TestContext& testCtx, const char* packageName); 43 ~ES30TestPackage(void); 44 45 void init(void); 46 47 virtual tcu::TestCaseExecutor* createExecutor(void) const; 48 49 private: 50 ES30TestPackage(const ES30TestPackage& other); 51 ES30TestPackage& operator=(const ES30TestPackage& other); 52 }; 53 54 } // es3cts 55 56 #endif // _ES3CTESTPACKAGE_HPP 57