Home | History | Annotate | Download | only in views

Lines Matching defs:mEglSurface

110         EGLSurface mEglSurface;
183 mEglSurface = null;
216 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, surface, null);
218 mEglSurface = null;
221 if (mEglSurface == null || mEglSurface == EGL10.EGL_NO_SURFACE) {
233 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
257 if (!mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) {
268 if (mEglSurface != null && mEglSurface != EGL10.EGL_NO_SURFACE) {
272 mEgl.eglDestroySurface(mEglDisplay, mEglSurface);
273 mEglSurface = null;