Home | History | Annotate | Download | only in ui

Lines Matching defs:configs

54             throw new RuntimeException("No configs match configSpec");
57 EGLConfig[] configs = new EGLConfig[numConfig[0]];
59 mConfigSpec, configs, configs.length, numConfig)) {
63 return chooseConfig(egl, display, configs);
67 EGL10 egl, EGLDisplay display, EGLConfig configs[]) {
76 for (int i = 0, n = configs.length; i < n; ++i) {
78 display, configs[i], EGL10.EGL_STENCIL_SIZE, value)) {
82 result = configs[i];
89 if (result == null) result = configs[0];