1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
|
/*
* Copyright (c) 2008 Sun Microsystems, Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* - Redistribution of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* - Redistribution in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* Neither the name of Sun Microsystems, Inc. or the names of
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* This software is provided "AS IS," without a warranty of any kind. ALL
* EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
* INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
* PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN
* MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL NOT BE LIABLE FOR
* ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
* DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR
* ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR
* DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE
* DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY,
* ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, EVEN IF
* SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
*
* Sun gratefully acknowledges that this software was originally authored
* and developed by Kenneth Bradley Russell and Christopher John Kline.
*/
package com.sun.opengl.impl.egl;
import java.util.*;
import javax.media.nativewindow.*;
import javax.media.opengl.*;
import com.sun.opengl.impl.*;
import com.sun.nativewindow.impl.*;
import com.sun.gluegen.runtime.NativeLibrary;
import com.sun.gluegen.runtime.DynamicLookupHelper;
import java.security.*;
/**
* Abstract implementation of the DynamicLookupHelper for EGL,
* which decouples it's dependencies to EGLDrawableFactory.
*
* Currently two implementations exist, one for ES1 and one for ES2.
*/
public abstract class EGLDynamicLookupHelper implements DynamicLookupHelper {
protected static final boolean DEBUG = com.sun.opengl.impl.Debug.debug("EGL");
protected static final boolean DEBUG_LOOKUP;
private static final EGLDynamicLookupHelper eglES1DynamicLookupHelper;
private static final EGLDynamicLookupHelper eglES2DynamicLookupHelper;
private List/*<NativeLibrary>*/ glesLibraries;
static {
AccessControlContext localACC=AccessController.getContext();
DEBUG_LOOKUP = com.sun.opengl.impl.Debug.isPropertyDefined("jogl.debug.DynamicLookup", true, localACC);
EGLDynamicLookupHelper tmp=null;
try {
tmp = new EGLES1DynamicLookupHelper();
} catch (Throwable t) {
if(DEBUG) {
t.printStackTrace();
}
}
eglES1DynamicLookupHelper = tmp;
tmp=null;
try {
tmp = new EGLES2DynamicLookupHelper();
} catch (Throwable t) {
if(DEBUG) {
t.printStackTrace();
}
}
eglES2DynamicLookupHelper = tmp;
}
public static EGLDynamicLookupHelper getDynamicLookupHelper(GLProfile glp) {
if (glp.usesNativeGLES2()) {
if(null==eglES2DynamicLookupHelper) {
throw new GLException("EGLDynamicLookupHelper for ES2 not available");
}
return eglES2DynamicLookupHelper;
} else if (glp.usesNativeGLES1()) {
if(null==eglES1DynamicLookupHelper) {
throw new GLException("EGLDynamicLookupHelper for ES1 not available");
}
return eglES1DynamicLookupHelper;
} else {
throw new GLException("Unsupported: "+glp);
}
}
public static EGLDynamicLookupHelper getDynamicLookupHelper(int esProfile) {
if (2==esProfile) {
if(null==eglES2DynamicLookupHelper) {
throw new GLException("EGLDynamicLookupHelper for ES2 not available");
}
return eglES2DynamicLookupHelper;
} else if (1==esProfile) {
if(null==eglES1DynamicLookupHelper) {
throw new GLException("EGLDynamicLookupHelper for ES1 not available");
}
return eglES1DynamicLookupHelper;
} else {
throw new GLException("Unsupported: ES"+esProfile);
}
}
protected EGLDynamicLookupHelper() {
loadGLESLibrary(getESProfile());
EGL.resetProcAddressTable(this);
}
/** Must return the proper ES profile number, 1 for ES1 and 2 for ES2 */
protected abstract int getESProfile();
/** Must return at least one OpenGL ES library name */
protected abstract List/*<String>*/ getGLESLibNames();
/** May return OpenGL ES library name(s) */
protected List/*<String>*/ getEGLLibNames() {
List/*<String>*/ eglLibNames = new ArrayList();
// EGL
eglLibNames.add("EGL");
// for windows distributions using the 'unlike' lib prefix,
// where our tool does not add it.
eglLibNames.add("libEGL");
return eglLibNames;
}
private NativeLibrary loadFirstAvailable(List/*<String>*/ libNames, ClassLoader loader) {
for (Iterator iter = libNames.iterator(); iter.hasNext(); ) {
NativeLibrary lib = NativeLibrary.open((String) iter.next(), loader, false /*global*/);
if (lib != null) {
return lib;
}
}
return null;
}
private boolean loadEGLLibrary(ClassLoader loader, List/*<String>*/ eglLibNames) {
NativeLibrary lib = null;
if(null!=eglLibNames && eglLibNames.size()>0) {
// EGL libraries ..
lib = loadFirstAvailable(eglLibNames, loader);
if ( null != lib ) {
glesLibraries.add(lib);
}
}
return null!=lib;
}
private void loadGLESLibrary(int esProfile) {
List/*<String>*/ glesLibNames = getGLESLibNames();
List/*<String>*/ eglLibNames = getEGLLibNames();
boolean eglLoaded = false;
ClassLoader loader = getClass().getClassLoader();
NativeLibrary lib = null;
glesLibraries = new ArrayList();
// ES libraries ..
lib = loadFirstAvailable(glesLibNames, loader);
if ( null == lib ) {
/*** FIXME: Have to think about this ..
// try again with EGL loaded first ..
if ( !eglLoaded && loadEGLLibrary(loader, eglLibNames) ) {
eglLoaded = true ;
lib = loadFirstAvailable(glesLibNames, loader);
}
if ( null == lib ) {
throw new GLException("Unable to dynamically load OpenGL ES library for profile ES" + esProfile);
} */
throw new GLException("Unable to dynamically load OpenGL ES library for profile ES" + esProfile);
}
glesLibraries.add(lib);
if ( !eglLoaded && !loadEGLLibrary(loader, eglLibNames) ) {
throw new GLException("Unable to dynamically load EGL library for profile ES" + esProfile);
}
if (esProfile==2) {
NativeLibLoader.loadES2();
} else if (esProfile==1) {
NativeLibLoader.loadES1();
} else {
throw new GLException("Unsupported: ES"+esProfile);
}
}
private long dynamicLookupFunctionOnLibs(String glFuncName) {
String funcName=glFuncName;
long addr = dynamicLookupFunctionOnLibsImpl(funcName);
if( 0==addr && NativeWindowFactory.TYPE_WINDOWS.equals(NativeWindowFactory.getNativeWindowType(false)) ) {
// Hack: try some C++ decoration here for Imageon's emulation libraries ..
final int argAlignment=4; // 4 byte alignment of each argument
final int maxArguments=12; // experience ..
for(int arg=0; 0==addr && arg<=maxArguments; arg++) {
funcName = "_"+glFuncName+"@"+(arg*argAlignment);
addr = dynamicLookupFunctionOnLibsImpl(funcName);
}
}
if(DEBUG_LOOKUP) {
if(0!=addr) {
System.err.println("Lookup-Native: "+glFuncName+" / "+funcName+" 0x"+Long.toHexString(addr));
} else {
System.err.println("Lookup-Native: "+glFuncName+" / "+funcName+" ** FAILED ** ");
}
}
return addr;
}
private long dynamicLookupFunctionOnLibsImpl(String glFuncName) {
// Look up this function name in all known libraries
for (Iterator iter = glesLibraries.iterator(); iter.hasNext(); ) {
NativeLibrary lib = (NativeLibrary) iter.next();
long addr = lib.dynamicLookupFunction(glFuncName);
if (addr != 0) {
return addr;
}
}
return 0;
}
private long eglGetProcAddressHandle = 0;
public long dynamicLookupFunction(String glFuncName) {
if(null==glFuncName) {
return 0;
}
// bootstrap eglGetProcAddress
if(0==eglGetProcAddressHandle) {
eglGetProcAddressHandle = dynamicLookupFunctionOnLibs("eglGetProcAddress");
if(0==eglGetProcAddressHandle) {
GLException e = new GLException("Couldn't find eglGetProcAddress function entry");
if(DEBUG) {
e.printStackTrace();
}
throw e;
}
}
if(glFuncName.equals("eglGetProcAddress")) {
return eglGetProcAddressHandle;
}
long addr = EGL.eglGetProcAddress(eglGetProcAddressHandle, glFuncName);
if(DEBUG_LOOKUP) {
if(0!=addr) {
System.err.println("Lookup-EGL: <"+glFuncName+"> 0x"+Long.toHexString(addr));
}
}
if(0==addr) {
addr = dynamicLookupFunctionOnLibs(glFuncName);
}
return addr;
}
}
|