Home | History | Annotate | Download | only in jni

Lines Matching refs:CONTEXT

143         jobject context, jint attribute, jintArray value) {
144 if (display == NULL || context == NULL || value == NULL
150 EGLContext ctx = getContext(_env, context);
433 static jboolean jni_eglDestroyContext(JNIEnv *_env, jobject _this, jobject display, jobject context) {
434 if (display == NULL || context
439 EGLContext ctx = getContext(_env, context);
466 static jboolean jni_eglMakeCurrent(JNIEnv *_env, jobject _this, jobject display, jobject draw, jobject read, jobject context) {
467 if (display == NULL || draw == NULL || read == NULL || context == NULL) {
474 EGLContext ctx = getContext(_env, context);
529 #define CONTEXT "Ljavax/microedition/khronos/egl/EGLContext;"
539 {"eglQueryContext", "(" DISPLAY CONTEXT "I[I)Z", (void*)jni_eglQueryContext },
544 {"_eglCreateContext","(" DISPLAY CONFIG CONTEXT "[I)J", (void*)jni_eglCreateContext },
559 {"eglDestroyContext", "(" DISPLAY CONTEXT ")Z", (void*)jni_eglDestroyContext },
561 {"eglMakeCurrent", "(" DISPLAY SURFACE SURFACE CONTEXT")Z", (void*)jni_eglMakeCurrent },