DEADSOFTWARE

Fix hard-float build
[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 #if defined(__MULTITEXTURE_SUPPORT__)
76 if (!strcmp(procname, "glMultiTexCoord2fARB"))
77 {
78 return (void*)&glMultiTexCoord2fARB;
79 }
80 else if (!strcmp(procname, "glActiveTextureARB"))
81 {
82 return (void*)&glActiveTexture;
83 }
84 else if (!strcmp(procname, "glClientActiveTextureARB"))
85 {
86 return (void*)&glClientActiveTexture;
87 }
88 #endif
89 return dlsym(glesLib, name);
90 }
92 static int CreateGlEsInterface( const char * name, void * lib, void * lib1, void * default_func )
93 {
94 // alloc space
95 if ( !glEsImpl )
96 glEsImpl = (GlESInterface *) malloc(sizeof(GlESInterface));
98 if (!glEsImpl) {
99 return 0;
102 // load GL API calls
103 char const * const * api;
104 api = gl_names;
106 // nanoGL interface pointer
107 void ** ptr = (void **)(glEsImpl);
109 while (*api)
111 void * f;
113 f = dlsym(lib, *api); // try libGLESxx_CM.so
115 if (f == NULL) {
116 LOGW( "<%s> not found in %s. Trying libEGL.so.", *api, name); //driver);
118 // try lib1
119 if ( lib1 ) {
120 f = dlsym(lib1, *api); // libEGL.so
122 if ( f == NULL ) {
123 LOGE ( "<%s> not found in libEGL.so", *api);
124 f = default_func; //(void*)gl_unimplemented;
126 else {
127 LOGD ("<%s> @ 0x%p\n", *api, f);
130 else
131 f = default_func;
133 else {
134 LOGD ("<%s> @ 0x%p\n", *api, f);
137 *ptr++ = f;
138 api++;
141 return 1;
144 // Load using the dynamic loader
145 static int loadDriver(const char * name) {
146 glesLib = dlopen(name, RTLD_NOW | RTLD_LOCAL);
147 int rc = (glesLib) ? 1 : 0;
148 return rc;
151 /**
152 * Init
153 */
154 int nanoGL_Init()
156 const char * lib1 = "libGLESv1_CM.so"; // Has both gl* & egl* funcs SDK < 1.5
157 const char * lib2 = "libGLESv2.so"; // Only gl* funcs SDK >= 1.5
158 const char * lib3 = "libEGL.so"; // Only egl* funcs SDK >= 1.5
159 const char * driver;
161 // load lib
162 LOGI("nanoGL: Init loading driver %s\n", lib1);
163 //LOG (ANDROID_LOG_DEBUG, LOG_TAG, "nanoGL: Init loading driver %s\n", lib1);
165 if ( ! loadDriver(lib1) )
167 LOGE("Failed to load driver %s. Trying %s\n", lib1, lib2);
169 if ( ! loadDriver(lib2) ) {
170 LOGE ("Failed to load %s.\n", lib2);
171 return 0;
173 else
174 driver = lib2;
176 else
177 driver = lib1;
179 void * eglLib;
181 //if ( strcmp(driver, lib2) == 0 ) {
182 LOGD ("**** Will Load EGL subs from %s ****", lib3);
184 eglLib = dlopen(lib3, RTLD_NOW | RTLD_LOCAL);
186 if ( ! eglLib ) {
187 LOGE ( "Failed to load %s", lib3);
189 //}
191 // Load API gl* for 1.5+ else egl* gl*
192 //if (CreateGlEsInterface(driver, glesLib, eglLib, NULL) == -1)
193 if ( !CreateGlEsInterface(driver, glesLib, eglLib, (void *) gl_unimplemented) == -1)
195 // release lib
196 LOGE ( "CreateGlEsInterface failed.");
198 dlclose(glesLib);
199 return 0;
202 // Init nanoGL
203 InitGLStructs();
204 return 1;
207 void nanoGL_Destroy()
209 LOGD ("nanoGL_Destroy");
211 if (glEsImpl) {
212 free( glEsImpl);
213 glEsImpl = NULL;
216 // release lib
217 dlclose(glesLib);