Home | History | Annotate | Download | only in camera

Lines Matching refs:mEgl

57     private EGL10 mEgl;
105 mEgl.eglSwapBuffers(mEglDisplay, mEglSurface);
117 mEgl.eglSwapBuffers(mEglDisplay, mEglSurface);
122 mEgl = (EGL10) EGLContext.getEGL();
123 mEglDisplay = mEgl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY);
128 if (!mEgl.eglInitialize(mEglDisplay, version)) {
134 mEglConfig = chooseConfig(mEgl, mEglDisplay);
135 mEglContext = mEgl.eglCreateContext(mEglDisplay, mEglConfig, EGL10.EGL_NO_CONTEXT,
141 mEglSurface = mEgl.eglCreateWindowSurface(
147 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
158 mEgl.eglDestroySurface(mEglDisplay, mEglSurface);
159 mEgl.eglDestroyContext(mEglDisplay, mEglContext);
160 mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE,
162 mEgl.eglTerminate(mEglDisplay);