blob: d3d8fefc13a03dd2168ee91e5d6164d6a8b3d2a3 [file] [log] [blame]
Pyry Haulos3c67e4f2014-12-19 15:45:39 -08001#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
29namespace de
30{
31class DynamicLibrary;
32}
33
34namespace eglw
35{
36
37class Library
38{
39public:
40 // Entry points:
41 // virtual EGLBoolean initialize (EGLDisplay ...) const = 0;
42#include "eglwLibrary.inl"
43};
44
45class FuncPtrLibrary : public Library
46{
47public:
48 FuncPtrLibrary (void);
49 ~FuncPtrLibrary (void);
50
51#include "eglwFuncPtrLibraryDecl.inl"
52
53protected:
54 Functions m_egl;
55};
56
57class DefaultLibrary : public FuncPtrLibrary
58{
59public:
60 DefaultLibrary (const char* dynamicLibraryName = getLibraryFileName());
61 ~DefaultLibrary (void);
62
63 static const char* getLibraryFileName (void);
64
65protected:
66 de::DynamicLibrary* m_dynLib;
67};
68
69} // eglw
70
71#endif // _EGLWLIBRARY_HPP