Home | History | Annotate | Download | only in views

Lines Matching refs:egl

27 import javax.microedition.khronos.egl.EGL10;
28 import javax.microedition.khronos.egl.EGLConfig;
29 import javax.microedition.khronos.egl.EGLContext;
30 import javax.microedition.khronos.egl.EGLDisplay;
31 import javax.microedition.khronos.egl.EGLSurface;
101 * An EGL helper class.
140 EGLContext createContext(EGL10 egl, EGLDisplay eglDisplay, EGLConfig eglConfig) {
142 return egl.eglCreateContext(eglDisplay, eglConfig, EGL10.EGL_NO_CONTEXT, attribList);
146 * Initialize EGL for a given configuration spec.
150 * Get an EGL instance
164 * We can now initialize EGL for that display
173 * Create an EGL context. We want to do this as rarely as we can, because an
174 * EGL context is a somewhat heavy object.
187 * Create an egl surface for the current SurfaceTexture surface. If a surface
197 throw new RuntimeException("egl not initialized");
213 * Create an EGL surface we can render into.
246 * Create a GL object for the current EGL context.
254 * @return the EGL error code from eglSwapBuffers.