forked from openrs2/openrs2
parent
d0cc1b5029
commit
3e2192236f
@ -0,0 +1,29 @@ |
|||||||
|
#include "jaggl_X11_dri.h" |
||||||
|
|
||||||
|
#include <dlfcn.h> |
||||||
|
#include <stddef.h> |
||||||
|
|
||||||
|
static void *jaggl_dri_handle; |
||||||
|
|
||||||
|
JNIEXPORT jboolean JNICALL Java_jaggl_X11_dri_open(JNIEnv *env, jclass cls, jstring path) { |
||||||
|
if (jaggl_dri_handle) { |
||||||
|
dlclose(jaggl_dri_handle); |
||||||
|
jaggl_dri_handle = NULL; |
||||||
|
} |
||||||
|
|
||||||
|
const char *path_str = (*env)->GetStringUTFChars(env, path, NULL); |
||||||
|
jaggl_dri_handle = dlopen(path_str, RTLD_LAZY | RTLD_GLOBAL); |
||||||
|
(*env)->ReleaseStringUTFChars(env, path, path_str); |
||||||
|
|
||||||
|
return jaggl_dri_handle != NULL; |
||||||
|
} |
||||||
|
|
||||||
|
JNIEXPORT jboolean JNICALL Java_jaggl_X11_dri_close(JNIEnv *env, jclass cls) { |
||||||
|
if (jaggl_dri_handle) { |
||||||
|
dlclose(jaggl_dri_handle); |
||||||
|
jaggl_dri_handle = NULL; |
||||||
|
return JNI_TRUE; |
||||||
|
} |
||||||
|
|
||||||
|
return JNI_FALSE; |
||||||
|
} |
Loading…
Reference in new issue