diff options
author | Erik De Rijcke <[email protected]> | 2015-05-10 21:13:04 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-11-21 03:39:44 +0100 |
commit | e1d767a4063d2503f9099d24a570664f6acd1a34 (patch) | |
tree | cde62bfb7e260a4423d4a5c102783cd205148b5d /src/newt/native | |
parent | f4281b5ee80d7674134bfee357695a98382884a3 (diff) |
add gbm java & build modifications
Diffstat (limited to 'src/newt/native')
-rw-r--r-- | src/newt/native/gbm.c | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/newt/native/gbm.c b/src/newt/native/gbm.c new file mode 100644 index 000000000..8b0baedc5 --- /dev/null +++ b/src/newt/native/gbm.c @@ -0,0 +1,49 @@ +#include "jogamp_newt_driver_gbm_DisplayDriver.h" +#include "jogamp_newt_driver_gbm_ScreenDriver.h" +#include "jogamp_newt_driver_gbm_WindowDriver.h" + +/* + * Class: jogamp_newt_driver_gbm_DisplayDriver + * Method: initIDs + * Signature: ()Z + */ +JNIEXPORT jboolean JNICALL Java_jogamp_newt_driver_gbm_DisplayDriver_initIDs + (JNIEnv *env, jclass cls){ + } + +/* + * Class: jogamp_newt_driver_gbm_DisplayDriver + * Method: initGbm + * Signature: ()V + */ +JNIEXPORT void JNICALL Java_jogamp_newt_driver_gbm_DisplayDriver_initGbm + (JNIEnv *env, jobject this){ + + } + +/* + * Class: jogamp_newt_driver_gbm_DisplayDriver + * Method: init + * Signature: ()V + */ +JNIEXPORT void JNICALL Java_jogamp_newt_driver_gbm_DisplayDriver_init + (JNIEnv *env, jobject this){ + } + +/* + * Class: jogamp_newt_driver_gbm_DisplayDriver + * Method: destroyDisplay + * Signature: ()V + */ +JNIEXPORT void JNICALL Java_jogamp_newt_driver_gbm_DisplayDriver_destroyDisplay + (JNIEnv *env, jobject this){ + } + +/* + * Class: jogamp_newt_driver_gbm_WindowDriver + * Method: createSurface + * Signature: (J)J + */ +JNIEXPORT jlong JNICALL Java_jogamp_newt_driver_gbm_WindowDriver_createSurface + (JNIEnv *env, jobject this, jlong gbmDevice){ + }
\ No newline at end of file |