aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerard Ziemski <[email protected]>2004-06-20 23:58:31 +0000
committerGerard Ziemski <[email protected]>2004-06-20 23:58:31 +0000
commit37a609451b055defbc964319d5eb6805d24483f1 (patch)
tree548f75c30799d8bdb10ec89ccac8d64ccc216486
parent20ba0a191efa525b8574aaa3466ccb660b41633d (diff)
add VOB for Mac OS X
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@134 232f8b59-042b-4e1e-8c03-345bb8c30851
-rw-r--r--make/gl-impl-CustomCCode.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/make/gl-impl-CustomCCode.c b/make/gl-impl-CustomCCode.c
index 28cfe093f..f0c7cb45a 100644
--- a/make/gl-impl-CustomCCode.c
+++ b/make/gl-impl-CustomCCode.c
@@ -57,3 +57,35 @@ Java_net_java_games_jogl_impl_x11_X11GLImpl_dispatch_1glMapBufferARB(JNIEnv *env
_res = (* ptr_glMapBufferARB) ((GLenum) target, (GLenum) access);
return (jlong) (intptr_t) _res;
}
+
+/* Java->C glue code:
+ * Java package: net.java.games.jogl.impl.macosx.MacOSXGLImpl
+ * Java method: long dispatch_glMapBufferARB(int target, int access)
+ * C function: LPVOID glMapBufferARB(GLenum target, GLenum access);
+ */
+JNIEXPORT jlong JNICALL
+Java_net_java_games_jogl_impl_macosx_MacOSXGLImpl_dispatch_1glMapBuffer( JNIEnv *env, jobject _unused, jint target, jint access, jlong glProcAddress)
+{
+ PFNGLMAPBUFFERPROC ptr_glMapBuffer;
+ LPVOID _res;
+ ptr_glMapBuffer = (PFNGLMAPBUFFERPROC) (intptr_t) glProcAddress;
+ assert(ptr_glMapBuffer != NULL);
+ _res = (* ptr_glMapBuffer) ((GLenum) target, (GLenum) access);
+ return (jlong) (intptr_t) _res;
+}
+
+/* Java->C glue code:
+ * Java package: net.java.games.jogl.impl.macosx.MacOSXGLImpl
+ * Java method: long dispatch_glMapBuffer(int target, int access)
+ * C function: LPVOID glMapBuffer(GLenum target, GLenum access);
+ */
+JNIEXPORT jlong JNICALL
+Java_net_java_games_jogl_impl_macosx_MacOSXGLImpl_dispatch_1glMapBufferARB(JNIEnv *env, jobject _unused, jint target, jint access, jlong glProcAddress)
+{
+ PFNGLMAPBUFFERARBPROC ptr_glMapBufferARB;
+ LPVOID _res;
+ ptr_glMapBufferARB = (PFNGLMAPBUFFERARBPROC) (intptr_t) glProcAddress;
+ assert(ptr_glMapBufferARB != NULL);
+ _res = (* ptr_glMapBufferARB) ((GLenum) target, (GLenum) access);
+ return (jlong) (intptr_t) _res;
+}