Home | History | Annotate | Download | only in filterfw

Lines Matching refs:mEgl

64     private EGL10 mEgl;
119 EGLConfig eglConfig = chooseEglConfig(mEgl, mDisplay);
124 eglSurf = mEgl.eglCreateWindowSurface(mDisplay, eglConfig, surfaceHolder, null);
128 checkEglError(mEgl, "eglCreateWindowSurface");
129 checkSurface(mEgl, eglSurf);
138 EGLConfig eglConfig = chooseEglConfig(mEgl, mDisplay);
143 eglSurf = mEgl.eglCreateWindowSurface(mDisplay, eglConfig, surfaceTexture, null);
147 checkEglError(mEgl, "eglCreateWindowSurface");
148 checkSurface(mEgl, eglSurf);
157 EGLConfig eglConfig = chooseEglConfig(mEgl, mDisplay);
162 eglSurf = mEgl.eglCreateWindowSurface(mDisplay, eglConfig, surface, null);
166 checkEglError(mEgl, "eglCreateWindowSurface");
167 checkSurface(mEgl, eglSurf);
214 mEgl.eglMakeCurrent(mDisplay, surface(), surface(), mContext);
234 mEgl.eglSwapBuffers(mDisplay, surface());
248 mEgl.eglDestroyContext(mDisplay, mContext);
254 mEgl.eglDestroySurface(mDisplay, mSurface);
350 mEgl = (EGL10) EGLContext.getEGL();