| /*------------------------------------------------------------------------- |
| * drawElements Quality Program Tester Core |
| * ---------------------------------------- |
| * |
| * Copyright 2014 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| * |
| *//*! |
| * \file |
| * \brief EGL common defines and types |
| *//*--------------------------------------------------------------------*/ |
| |
| #include "egluStaticESLibrary.hpp" |
| #include "tcuFunctionLibrary.hpp" |
| |
| #if defined(DEQP_SUPPORT_GLES2) && !defined(DEQP_GLES2_RUNTIME_LOAD) |
| # if (DE_OS == DE_OS_IOS) |
| # include <OpenGLES/ES2/gl.h> |
| # else |
| # include <GLES2/gl2.h> |
| # endif |
| #endif |
| |
| #if defined(DEQP_SUPPORT_GLES3) && !defined(DEQP_GLES3_RUNTIME_LOAD) |
| # if (DE_OS == DE_OS_IOS) |
| # include <OpenGLES/ES3/gl.h> |
| # else |
| # include <GLES3/gl3.h> |
| # endif |
| #endif |
| |
| // \todo [2014-03-14 pyry] ES3.1 support |
| |
| namespace eglu |
| { |
| |
| tcu::FunctionLibrary* createStaticESLibrary (void) |
| { |
| static const tcu::StaticFunctionLibrary::Entry s_functions[] = |
| { |
| #if defined(DEQP_SUPPORT_GLES3) && !defined(DEQP_GLES3_RUNTIME_LOAD) |
| # include "egluStaticES20Library.inl" |
| # include "egluStaticES30Library.inl" |
| #elif defined(DEQP_SUPPORT_GLES2) && !defined(DEQP_GLES2_RUNTIME_LOAD) |
| # include "egluStaticES20Library.inl" |
| #endif |
| }; |
| |
| return new tcu::StaticFunctionLibrary(&s_functions[0], DE_LENGTH_OF_ARRAY(s_functions)); |
| } |
| |
| } // eglu |