aboutsummaryrefslogtreecommitdiffstats
path: root/src/native/common/PointerBuffer.c
blob: f3e25d3bef15308e8e4eeebc9b0fa999338a55bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#include <jni.h>

#include <assert.h>

#include <gluegen_stdint.h>

#include "com_jogamp_common_nio_PointerBuffer.h"

JNIEXPORT jlong JNICALL 
Java_com_jogamp_common_nio_PointerBuffer_getDirectBufferAddressImpl(JNIEnv *env, jclass _unused, jobject directBuffer) {
    return ( NULL != directBuffer ) ? (jlong) (intptr_t)  (*env)->GetDirectBufferAddress(env, directBuffer) : 0L ; 
}