diff options
Diffstat (limited to 'src/native/jogl/InternalBufferUtils.c')
-rw-r--r-- | src/native/jogl/InternalBufferUtils.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/native/jogl/InternalBufferUtils.c b/src/native/jogl/InternalBufferUtils.c index 083f51b42..aced365b7 100644 --- a/src/native/jogl/InternalBufferUtils.c +++ b/src/native/jogl/InternalBufferUtils.c @@ -52,3 +52,12 @@ JNIEXPORT jobject JNICALL Java_com_sun_opengl_impl_InternalBufferUtils_newDirectByteBuffer(JNIEnv* env, jclass unused, jlong address, jint capacity) { return (*env)->NewDirectByteBuffer(env, (void*) (intptr_t) address, capacity); } + +#ifdef __sun +#include <dlfcn.h> +/* Sun's GLX implementation doesn't have glXGetProcAddressARB (or + glXGetProcAddress) so we implement it here */ +void (*glXGetProcAddressARB(const char *procname))() { + return (void (*)()) dlsym(RTLD_DEFAULT, procname); +} +#endif /* __ sun */ |