Home | History | Annotate | Download | only in nfc

Lines Matching refs:mEglDisplay

47     EGLDisplay mEglDisplay;
236 if (!mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) {
255 mEglDisplay = mEgl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY);
256 if (mEglDisplay == EGL10.EGL_NO_DISPLAY) {
263 if (!mEgl.eglInitialize(mEglDisplay, version)) {
275 mEglContext = mEgl.eglCreateContext(mEglDisplay, mEglConfig, EGL10.EGL_NO_CONTEXT, null);
277 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, mSurface, null);
285 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
297 if (mEgl == null || mEglDisplay == null) {
302 mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE,
305 mEgl.eglDestroyContext(mEglDisplay, mEglContext);
308 mEgl.eglDestroySurface(mEglDisplay, mEglSurface);
315 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
325 if (!mEgl.eglChooseConfig(mEglDisplay, sEglConfig, configs, 1, configsCount)) {