Lines Matching refs:display

117 static jboolean jni_eglInitialize(JNIEnv *_env, jobject _this, jobject display,
119 if (display == NULL || (major_minor != NULL &&
125 EGLDisplay dpy = getDisplay(_env, display);
140 static jboolean jni_eglQueryContext(JNIEnv *_env, jobject _this, jobject display,
142 if (display == NULL || context == NULL || value == NULL
147 EGLDisplay dpy = getDisplay(_env, display);
159 static jboolean jni_eglQuerySurface(JNIEnv *_env, jobject _this, jobject display,
161 if (display == NULL || surface == NULL || value == NULL
166 EGLDisplay dpy = getDisplay(_env, display);
179 static jint jni_getInitCount(JNIEnv *_env, jobject _clazz, jobject display) {
180 EGLDisplay dpy = getDisplay(_env, display);
189 static jboolean jni_eglChooseConfig(JNIEnv *_env, jobject _this, jobject display,
191 if (display == NULL
198 EGLDisplay dpy = getDisplay(_env, display);
224 static jint jni_eglCreateContext(JNIEnv *_env, jobject _this, jobject display,
226 if (display == NULL || config == NULL || share_context == NULL
231 EGLDisplay dpy = getDisplay(_env, display);
240 static jint jni_eglCreatePbufferSurface(JNIEnv *_env, jobject _this, jobject display,
242 if (display == NULL || config == NULL
247 EGLDisplay dpy = getDisplay(_env, display);
267 jobject display, jobject config, jobject native_pixmap,
270 if (display == NULL || config == NULL || native_pixmap == NULL
275 EGLDisplay dpy = getDisplay(_env, display);
312 static jint jni_eglCreateWindowSurface(JNIEnv *_env, jobject _this, jobject display,
314 if (display == NULL || config == NULL
319 EGLDisplay dpy = getDisplay(_env, display);
339 static jint jni_eglCreateWindowSurfaceTexture(JNIEnv *_env, jobject _this, jobject display,
341 if (display == NULL || config == NULL
346 EGLDisplay dpy = getDisplay(_env, display);
368 static jboolean jni_eglGetConfigAttrib(JNIEnv *_env, jobject _this, jobject display,
370 if (display == NULL || config == NULL
375 EGLDisplay dpy = getDisplay(_env, display);
386 static jboolean jni_eglGetConfigs(JNIEnv *_env, jobject _this, jobject display,
388 if (display == NULL || (configs != NULL && _env->GetArrayLength(configs) < config_size)
393 EGLDisplay dpy = getDisplay(_env, display);
434 static jboolean jni_eglDestroyContext(JNIEnv *_env, jobject _this, jobject display, jobject context) {
435 if (display == NULL || context == NULL) {
439 EGLDisplay dpy = getDisplay(_env, display);
444 static jboolean jni_eglDestroySurface(JNIEnv *_env, jobject _this, jobject display, jobject surface) {
445 if (display == NULL || surface == NULL) {
449 EGLDisplay dpy = getDisplay(_env, display);
467 static jboolean jni_eglMakeCurrent(JNIEnv *_env, jobject _this, jobject display, jobject draw, jobject read, jobject context) {
468 if (display == NULL || draw == NULL || read == NULL || context == NULL) {
472 EGLDisplay dpy = getDisplay(_env, display);
479 static jstring jni_eglQueryString(JNIEnv *_env, jobject _this, jobject display, jint name) {
480 if (display == NULL) {
484 EGLDisplay dpy = getDisplay(_env, display);
489 static jboolean jni_eglSwapBuffers(JNIEnv *_env, jobject _this, jobject display, jobject surface) {
490 if (display == NULL || surface == NULL) {
494 EGLDisplay dpy = getDisplay(_env, display);
499 static jboolean jni_eglTerminate(JNIEnv *_env, jobject _this, jobject display) {
500 if (display == NULL) {
504 EGLDisplay dpy = getDisplay(_env, display);
508 static jboolean jni_eglCopyBuffers(JNIEnv *_env, jobject _this, jobject display,
510 if (display == NULL || surface == NULL || native_pixmap == NULL) {