1*35238bceSAndroid Build Coastguard Worker #ifndef _GLUCONTEXTFACTORY_HPP 2*35238bceSAndroid Build Coastguard Worker #define _GLUCONTEXTFACTORY_HPP 3*35238bceSAndroid Build Coastguard Worker /*------------------------------------------------------------------------- 4*35238bceSAndroid Build Coastguard Worker * drawElements Quality Program Tester Core 5*35238bceSAndroid Build Coastguard Worker * ---------------------------------------- 6*35238bceSAndroid Build Coastguard Worker * 7*35238bceSAndroid Build Coastguard Worker * Copyright 2014 The Android Open Source Project 8*35238bceSAndroid Build Coastguard Worker * 9*35238bceSAndroid Build Coastguard Worker * Licensed under the Apache License, Version 2.0 (the "License"); 10*35238bceSAndroid Build Coastguard Worker * you may not use this file except in compliance with the License. 11*35238bceSAndroid Build Coastguard Worker * You may obtain a copy of the License at 12*35238bceSAndroid Build Coastguard Worker * 13*35238bceSAndroid Build Coastguard Worker * http://www.apache.org/licenses/LICENSE-2.0 14*35238bceSAndroid Build Coastguard Worker * 15*35238bceSAndroid Build Coastguard Worker * Unless required by applicable law or agreed to in writing, software 16*35238bceSAndroid Build Coastguard Worker * distributed under the License is distributed on an "AS IS" BASIS, 17*35238bceSAndroid Build Coastguard Worker * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 18*35238bceSAndroid Build Coastguard Worker * See the License for the specific language governing permissions and 19*35238bceSAndroid Build Coastguard Worker * limitations under the License. 20*35238bceSAndroid Build Coastguard Worker * 21*35238bceSAndroid Build Coastguard Worker *//*! 22*35238bceSAndroid Build Coastguard Worker * \file 23*35238bceSAndroid Build Coastguard Worker * \brief Base class for GLContext factories. 24*35238bceSAndroid Build Coastguard Worker *//*--------------------------------------------------------------------*/ 25*35238bceSAndroid Build Coastguard Worker 26*35238bceSAndroid Build Coastguard Worker #include "tcuDefs.hpp" 27*35238bceSAndroid Build Coastguard Worker #include "tcuFactoryRegistry.hpp" 28*35238bceSAndroid Build Coastguard Worker #include "gluRenderContext.hpp" 29*35238bceSAndroid Build Coastguard Worker #include "gluRenderConfig.hpp" 30*35238bceSAndroid Build Coastguard Worker 31*35238bceSAndroid Build Coastguard Worker namespace tcu 32*35238bceSAndroid Build Coastguard Worker { 33*35238bceSAndroid Build Coastguard Worker class CommandLine; 34*35238bceSAndroid Build Coastguard Worker } 35*35238bceSAndroid Build Coastguard Worker 36*35238bceSAndroid Build Coastguard Worker namespace glu 37*35238bceSAndroid Build Coastguard Worker { 38*35238bceSAndroid Build Coastguard Worker 39*35238bceSAndroid Build Coastguard Worker /*--------------------------------------------------------------------*//*! 40*35238bceSAndroid Build Coastguard Worker * \brief OpenGL (ES) context factory 41*35238bceSAndroid Build Coastguard Worker * 42*35238bceSAndroid Build Coastguard Worker * In order to support OpenGL (ES) tests, glu::Platform implementation 43*35238bceSAndroid Build Coastguard Worker * must provide at least one GL context factory. 44*35238bceSAndroid Build Coastguard Worker *//*--------------------------------------------------------------------*/ 45*35238bceSAndroid Build Coastguard Worker class ContextFactory : public tcu::FactoryBase 46*35238bceSAndroid Build Coastguard Worker { 47*35238bceSAndroid Build Coastguard Worker public: 48*35238bceSAndroid Build Coastguard Worker ContextFactory(const std::string &name, const std::string &description); 49*35238bceSAndroid Build Coastguard Worker virtual ~ContextFactory(void); 50*35238bceSAndroid Build Coastguard Worker 51*35238bceSAndroid Build Coastguard Worker /*--------------------------------------------------------------------*//*! 52*35238bceSAndroid Build Coastguard Worker * Create OpenGL rendering context. 53*35238bceSAndroid Build Coastguard Worker * 54*35238bceSAndroid Build Coastguard Worker * GL(ES) tests will call this when entering TestPackage (i.e. when launching 55*35238bceSAndroid Build Coastguard Worker * test execution session) and destroy the context upon leaving TestPackage. 56*35238bceSAndroid Build Coastguard Worker * 57*35238bceSAndroid Build Coastguard Worker * Only single context will be active concurrently and it will be accessed 58*35238bceSAndroid Build Coastguard Worker * only from the calling thread. 59*35238bceSAndroid Build Coastguard Worker * 60*35238bceSAndroid Build Coastguard Worker * \param config Rendering context configuration 61*35238bceSAndroid Build Coastguard Worker * \param cmdLine Command line for extra arguments 62*35238bceSAndroid Build Coastguard Worker * \param sharedContext Context with which objects should be shared 63*35238bceSAndroid Build Coastguard Worker * \return Rendering context wrapper object. 64*35238bceSAndroid Build Coastguard Worker *//*--------------------------------------------------------------------*/ 65*35238bceSAndroid Build Coastguard Worker virtual RenderContext *createContext(const RenderConfig &config, const tcu::CommandLine &cmdLine, 66*35238bceSAndroid Build Coastguard Worker const glu::RenderContext *sharedContext) const = 0; 67*35238bceSAndroid Build Coastguard Worker 68*35238bceSAndroid Build Coastguard Worker private: 69*35238bceSAndroid Build Coastguard Worker ContextFactory(const ContextFactory &); 70*35238bceSAndroid Build Coastguard Worker ContextFactory &operator=(const ContextFactory &); 71*35238bceSAndroid Build Coastguard Worker }; 72*35238bceSAndroid Build Coastguard Worker 73*35238bceSAndroid Build Coastguard Worker typedef tcu::FactoryRegistry<ContextFactory> ContextFactoryRegistry; 74*35238bceSAndroid Build Coastguard Worker 75*35238bceSAndroid Build Coastguard Worker } // namespace glu 76*35238bceSAndroid Build Coastguard Worker 77*35238bceSAndroid Build Coastguard Worker #endif // _GLUCONTEXTFACTORY_HPP 78