Home | History | Annotate | Download | only in src

Lines Matching refs:EGLConfig

44 import javax.microedition.khronos.egl.EGLConfig;

58 * an EGLConfig that supports 2.0. This is done by providing a config
63 * - The class must select the surface's format, then choose an EGLConfig
97 /* We need to choose an EGLConfig that matches the format of
112 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) {
116 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
158 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) {
173 EGLConfig[] configs = new EGLConfig[numConfigs];
184 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display,
185 EGLConfig[] configs) {
186 for(EGLConfig config : configs) {
213 EGLConfig config, int attribute, int defaultValue) {
222 EGLConfig[] configs) {
232 EGLConfig config) {
335 public void onSurfaceCreated(GL10 gl, EGLConfig config) {