Home | History | Annotate | Download | only in display

Lines Matching defs:mEglDisplay

90     private EGLDisplay mEglDisplay;
387 EGL14.eglSwapBuffers(mEglDisplay, mEglSurface);
500 if (mEglDisplay == null) {
501 mEglDisplay = EGL14.eglGetDisplay(EGL14.EGL_DEFAULT_DISPLAY);
502 if (mEglDisplay == EGL14.EGL_NO_DISPLAY) {
508 if (!EGL14.eglInitialize(mEglDisplay, version, 0, version, 1)) {
509 mEglDisplay = null;
527 if (!EGL14.eglChooseConfig(mEglDisplay, eglConfigAttribList, 0,
540 mEglContext = EGL14.eglCreateContext(mEglDisplay, mEglConfig,
594 mEglSurface = EGL14.eglCreateWindowSurface(mEglDisplay, mEglConfig, mSurface,
606 if (!EGL14.eglDestroySurface(mEglDisplay, mEglSurface)) {
650 if (!EGL14.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
658 if (mEglDisplay != null) {
659 EGL14.eglMakeCurrent(mEglDisplay,