Home | History | Annotate | Download | only in egl
      1 /*-------------------------------------------------------------------------
      2  * drawElements Quality Program Tester Core
      3  * ----------------------------------------
      4  *
      5  * Copyright 2014 The Android Open Source Project
      6  *
      7  * Licensed under the Apache License, Version 2.0 (the "License");
      8  * you may not use this file except in compliance with the License.
      9  * You may obtain a copy of the License at
     10  *
     11  *      http://www.apache.org/licenses/LICENSE-2.0
     12  *
     13  * Unless required by applicable law or agreed to in writing, software
     14  * distributed under the License is distributed on an "AS IS" BASIS,
     15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     16  * See the License for the specific language governing permissions and
     17  * limitations under the License.
     18  *
     19  *//*!
     20  * \file
     21  * \brief EGL platform interface.
     22  *//*--------------------------------------------------------------------*/
     23 
     24 #include "egluPlatform.hpp"
     25 #include "egluStaticESLibrary.hpp"
     26 #include "tcuFunctionLibrary.hpp"
     27 
     28 namespace eglu
     29 {
     30 
     31 Platform::Platform (void)
     32 {
     33 }
     34 
     35 Platform::~Platform (void)
     36 {
     37 }
     38 
     39 tcu::FunctionLibrary* Platform::createDefaultGLFunctionLibrary (glu::ApiType apiType, const tcu::CommandLine&) const
     40 {
     41 	// \todo [2014-03-14 pyry] Do we want to implement tcu::DynamicFunctionLibrary-based fallback?
     42 	if (apiType.getProfile() == glu::PROFILE_ES)
     43 		return createStaticESLibrary();
     44 	else
     45 		return new tcu::StaticFunctionLibrary(DE_NULL, 0);
     46 }
     47 
     48 } // eglu
     49