1 #ifndef _EGLWLIBRARY_HPP 2 #define _EGLWLIBRARY_HPP 3 /*------------------------------------------------------------------------- 4 * drawElements Quality Program EGL Utilities 5 * ------------------------------------------ 6 * 7 * Copyright 2014 The Android Open Source Project 8 * 9 * Licensed under the Apache License, Version 2.0 (the "License"); 10 * you may not use this file except in compliance with the License. 11 * You may obtain a copy of the License at 12 * 13 * http://www.apache.org/licenses/LICENSE-2.0 14 * 15 * Unless required by applicable law or agreed to in writing, software 16 * distributed under the License is distributed on an "AS IS" BASIS, 17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 18 * See the License for the specific language governing permissions and 19 * limitations under the License. 20 * 21 *//*! 22 * \file 23 * \brief EGL API Library. 24 *//*--------------------------------------------------------------------*/ 25 26 #include "eglwDefs.hpp" 27 #include "eglwFunctions.hpp" 28 29 namespace de 30 { 31 class DynamicLibrary; 32 } 33 34 namespace eglw 35 { 36 37 class Library 38 { 39 public: 40 // Entry points: 41 // virtual EGLBoolean initialize (EGLDisplay ...) const = 0; 42 #include "eglwLibrary.inl" 43 }; 44 45 class FuncPtrLibrary : public Library 46 { 47 public: 48 FuncPtrLibrary (void); 49 ~FuncPtrLibrary (void); 50 51 #include "eglwFuncPtrLibraryDecl.inl" 52 53 protected: 54 Functions m_egl; 55 }; 56 57 class DefaultLibrary : public FuncPtrLibrary 58 { 59 public: 60 DefaultLibrary (const char* dynamicLibraryName = getLibraryFileName()); 61 ~DefaultLibrary (void); 62 63 static const char* getLibraryFileName (void); 64 65 protected: 66 de::DynamicLibrary* m_dynLib; 67 }; 68 69 } // eglw 70 71 #endif // _EGLWLIBRARY_HPP 72