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: ~Library()40 virtual ~Library() 41 { 42 } 43 44 // Entry points: 45 // virtual EGLBoolean initialize (EGLDisplay ...) const = 0; 46 #include "eglwLibrary.inl" 47 }; 48 49 class FuncPtrLibrary : public Library 50 { 51 public: 52 FuncPtrLibrary(void); 53 ~FuncPtrLibrary(void); 54 55 #include "eglwFuncPtrLibraryDecl.inl" 56 57 protected: 58 Functions m_egl; 59 }; 60 61 class DefaultLibrary : public FuncPtrLibrary 62 { 63 public: 64 DefaultLibrary(const char *dynamicLibraryName = getLibraryFileName()); 65 ~DefaultLibrary(void); 66 67 static const char *getLibraryFileName(void); 68 69 protected: 70 de::DynamicLibrary *m_dynLib; 71 }; 72 73 } // namespace eglw 74 75 #endif // _EGLWLIBRARY_HPP 76