Lines Matching refs:mEgl
1031 mEgl = (EGL10) EGLContext.getEGL(); in start()
1036 mEglDisplay = mEgl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY); in start()
1046 if(!mEgl.eglInitialize(mEglDisplay, version)) { in start()
1054 mEglConfig = view.mEGLConfigChooser.chooseConfig(mEgl, mEglDisplay); in start()
1060 mEglContext = view.mEGLContextFactory.createContext(mEgl, mEglDisplay, mEglConfig); in start()
1086 if (mEgl == null) { in createSurface()
1107 mEglSurface = view.mEGLWindowSurfaceFactory.createWindowSurface(mEgl, in createSurface()
1114 int error = mEgl.eglGetError(); in createSurface()
1125 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) { in createSurface()
1130 logEglErrorAsWarning("EGLHelper", "eglMakeCurrent", mEgl.eglGetError()); in createSurface()
1170 if (! mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) { in swap()
1171 return mEgl.eglGetError(); in swap()
1185 mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, in destroySurfaceImp()
1190 view.mEGLWindowSurfaceFactory.destroySurface(mEgl, mEglDisplay, mEglSurface); in destroySurfaceImp()
1203 view.mEGLContextFactory.destroyContext(mEgl, mEglDisplay, mEglContext); in finish()
1208 mEgl.eglTerminate(mEglDisplay); in finish()
1214 throwEglException(function, mEgl.eglGetError()); in throwEglException()
1235 EGL10 mEgl; field in GLSurfaceView.EglHelper