Home | History | Annotate | Download | only in nfc

Lines Matching defs:mEglDisplay

159         EGLDisplay mEglDisplay;
204 if (!mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) {
230 if (!mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) {
283 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
294 mEglDisplay = mEgl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY);
295 if (mEglDisplay == EGL10.EGL_NO_DISPLAY) {
302 if (!mEgl.eglInitialize(mEglDisplay, version)) {
314 mEglContext = mEgl.eglCreateContext(mEglDisplay, mEglConfig, EGL10.EGL_NO_CONTEXT, null);
316 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, mSurface, null);
324 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
336 if (mEgl == null || mEglDisplay == null) {
341 mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE,
345 mEgl.eglDestroySurface(mEglDisplay, mEglSurface);
349 mEgl.eglDestroyContext(mEglDisplay, mEglContext);
356 if (!mEgl.eglChooseConfig(mEglDisplay, sEglConfig, configs, 1, configsCount)) {