Lines Matching refs:mEgl
44 private EGL10 mEgl; field in SurfaceTextureRenderer
59 mEgl.eglSwapBuffers(mEglDisplay, mEglSurface);
79 mEgl.eglDestroySurface(mEglDisplay, mEglSurface); in release()
80 mEgl.eglDestroyContext(mEglDisplay, mEglContext); in release()
81 mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE, in release()
83 mEgl.eglTerminate(mEglDisplay); in release()
116 mEgl = (EGL10) EGLContext.getEGL(); in initialize()
117 mEglDisplay = mEgl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY); in initialize()
122 if (!mEgl.eglInitialize(mEglDisplay, version)) { in initialize()
128 mEglConfig = chooseConfig(mEgl, mEglDisplay); in initialize()
129 mEglContext = mEgl.eglCreateContext( in initialize()
135 mEglSurface = mEgl.eglCreateWindowSurface( in initialize()
141 if (!mEgl.eglMakeCurrent( in initialize()