DEADSOFTWARE

Add some functions to nanogl.h interface
[nanogl.git] / nanogl.cpp
1 /*
2 Copyright (C) 2007-2009 Olli Hinkka
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
21 #define LOG_TAG "nanoGL"
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <dlfcn.h>
27 //#include <cutils/log.h>
29 #include "nanogl.h"
30 #include "glesinterface.h"
31 #include "gl.h"
34 #define DEBUG_NANO 0
36 #ifdef __ANDROID__
37 #include <android/log.h>
38 #define LOG __android_log_print
40 #define LOGI(...) __android_log_print(ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__)
41 #define LOGD(...) if (DEBUG_NANO) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG,__VA_ARGS__)
42 #define LOGE(...) __android_log_print(ANDROID_LOG_ERROR, LOG_TAG,__VA_ARGS__)
43 #define LOGW(...) __android_log_print(ANDROID_LOG_WARN, LOG_TAG,__VA_ARGS__)
44 #else
46 #define LOGI(...) printf("I: "__VA_ARGS__)
47 #define LOGD(...) if(DEBUG_NANO) printf("D: "__VA_ARGS__)
48 #define LOGE(...) printf("E: "__VA_ARGS__)
49 #define LOGW(...) printf("W: "__VA_ARGS__)
51 #endif
54 #define GL_ENTRY(_r, _api, ...) #_api,
56 static char const * const gl_names[] = {
57 #include "gl_entries.in"
58 NULL
59 };
61 //const char * driver;
63 static void* glesLib = NULL;
65 GlESInterface* glEsImpl = NULL;
67 extern void InitGLStructs();
69 static void gl_unimplemented() {
70 LOGE ("Called unimplemented OpenGL ES API\n");
71 }
73 void *nanoGL_GetProcAddress(const char *name)
74 {
75 return dlsym(glesLib, name);
76 }
78 static int CreateGlEsInterface( const char * name, void * lib, void * lib1, void * default_func )
79 {
80 // alloc space
81 if ( !glEsImpl )
82 glEsImpl = (GlESInterface *) malloc(sizeof(GlESInterface));
84 if (!glEsImpl) {
85 return 0;
86 }
88 // load GL API calls
89 char const * const * api;
90 api = gl_names;
92 // nanoGL interface pointer
93 void ** ptr = (void **)(glEsImpl);
95 while (*api)
96 {
97 void * f;
99 f = dlsym(lib, *api); // try libGLESxx_CM.so
101 if (f == NULL) {
102 LOGW( "<%s> not found in %s. Trying libEGL.so.", *api, name); //driver);
104 // try lib1
105 if ( lib1 ) {
106 f = dlsym(lib1, *api); // libEGL.so
108 if ( f == NULL ) {
109 LOGE ( "<%s> not found in libEGL.so", *api);
110 f = default_func; //(void*)gl_unimplemented;
112 else {
113 LOGD ("<%s> @ 0x%p\n", *api, f);
116 else
117 f = default_func;
119 else {
120 LOGD ("<%s> @ 0x%p\n", *api, f);
123 *ptr++ = f;
124 api++;
127 return 1;
130 // Load using the dynamic loader
131 static int loadDriver(const char * name) {
132 glesLib = dlopen(name, RTLD_NOW | RTLD_LOCAL);
133 int rc = (glesLib) ? 1 : 0;
134 return rc;
137 /**
138 * Init
139 */
140 int nanoGL_Init()
142 const char * lib1 = "libGLESv1_CM.so"; // Has both gl* & egl* funcs SDK < 1.5
143 const char * lib2 = "libGLESv2.so"; // Only gl* funcs SDK >= 1.5
144 const char * lib3 = "libEGL.so"; // Only egl* funcs SDK >= 1.5
145 const char * driver;
147 // load lib
148 LOGI("nanoGL: Init loading driver %s\n", lib1);
149 //LOG (ANDROID_LOG_DEBUG, LOG_TAG, "nanoGL: Init loading driver %s\n", lib1);
151 if ( ! loadDriver(lib1) )
153 LOGE("Failed to load driver %s. Trying %s\n", lib1, lib2);
155 if ( ! loadDriver(lib2) ) {
156 LOGE ("Failed to load %s.\n", lib2);
157 return 0;
159 else
160 driver = lib2;
162 else
163 driver = lib1;
165 void * eglLib;
167 //if ( strcmp(driver, lib2) == 0 ) {
168 LOGD ("**** Will Load EGL subs from %s ****", lib3);
170 eglLib = dlopen(lib3, RTLD_NOW | RTLD_LOCAL);
172 if ( ! eglLib ) {
173 LOGE ( "Failed to load %s", lib3);
175 //}
177 // Load API gl* for 1.5+ else egl* gl*
178 //if (CreateGlEsInterface(driver, glesLib, eglLib, NULL) == -1)
179 if ( !CreateGlEsInterface(driver, glesLib, eglLib, (void *) gl_unimplemented) == -1)
181 // release lib
182 LOGE ( "CreateGlEsInterface failed.");
184 dlclose(glesLib);
185 return 0;
188 // Init nanoGL
189 InitGLStructs();
190 return 1;
193 void nanoGL_Destroy()
195 LOGD ("nanoGL_Destroy");
197 if (glEsImpl) {
198 free( glEsImpl);
199 glEsImpl = NULL;
202 // release lib
203 dlclose(glesLib);