Searched defs:numConfigs (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/opengl/tests/EGLTest/
H A DEGL_test.cpp56 EGLint numConfigs; local
65 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
68 ASSERT_GE(numConfigs, 1);
89 EGLint numConfigs; local
102 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
105 ASSERT_GE(numConfigs, 1);
/frameworks/base/libs/ui/
H A DEGLUtils.cpp61 EGLint numConfigs = -1, n=0; local
70 if (eglGetConfigs(dpy, NULL, 0, &numConfigs) == EGL_FALSE)
73 EGLConfig* const configs = (EGLConfig*)malloc(sizeof(EGLConfig)*numConfigs);
74 if (eglChooseConfig(dpy, attrs, configs, numConfigs, &n) == EGL_FALSE) {
/frameworks/base/opengl/tests/filter/
H A Dfilter.cpp32 EGLint numConfigs = -1; local
55 eglChooseConfig(dpy, s_configAttribs, &config, 1, &numConfigs);
/frameworks/base/opengl/tests/swapinterval/
H A Dswapinterval.cpp42 EGLint numConfigs=0; local
52 eglGetConfigs(dpy, NULL, 0, &numConfigs);
53 printf("# configs = %d\n", numConfigs);
/frameworks/base/libs/rs/driver/
H A DrsdGL.cpp154 dc->gl.egl.numConfigs = -1;
213 EGLint numConfigs = -1, n = 0; local
215 ret = eglChooseConfig(dc->gl.egl.display, configAttribs, 0, 0, &numConfigs);
218 if (numConfigs) {
219 EGLConfig* const configs = new EGLConfig[numConfigs];
223 configAttribs, configs, numConfigs, &n);
H A DrsdGL.h34 EGLint numConfigs; member in struct:RsdGLRec::__anon284
/frameworks/base/libs/gui/tests/
H A DSurfaceTextureClient_test.cpp49 EGLint numConfigs = 0; local
51 &myConfig, 1, &numConfigs));
130 EGLint numConfigs = 0; local
142 &numConfigs));
636 EGLint numConfigs = 0; local
642 &numConfigs));
H A DSurfaceTexture_test.cpp61 EGLint numConfigs = 0; local
63 1, &numConfigs));
1089 EGLint numConfigs = 0; local
1091 1, &numConfigs));
/frameworks/base/opengl/libs/EGL/
H A Degl_display.h111 state(NOT_INITIALIZED), numConfigs(0) { }
115 EGLint numConfigs; member in struct:android::egl_display_t::DisplayImpl
/frameworks/base/opengl/tests/gl_basic/
H A Dgl_basic.cpp214 EGLint numConfigs = 1; local
/frameworks/base/opengl/tests/tritex/
H A Dtritex.cpp122 EGLint numConfigs = 1; local
/frameworks/base/services/surfaceflinger/DisplayHardware/
H A DDisplayHardware.cpp110 EGLint numConfigs = -1, n=0; local
111 eglGetConfigs(dpy, NULL, 0, &numConfigs);
112 EGLConfig* const configs = new EGLConfig[numConfigs];
113 eglChooseConfig(dpy, attrs, configs, numConfigs, &n);
156 EGLint numConfigs=0; local
184 eglGetConfigs(display, NULL, 0, &numConfigs);
288 LOGI("# of configs : %d", numConfigs);
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp238 EGLint numConfigs; local
246 eglChooseConfig(display, attribs, &config, 1, &numConfigs);
/frameworks/base/opengl/tests/gl2_copyTexImage/
H A Dgl2_copyTexImage.cpp410 EGLint numConfigs = -1, n = 0; local
411 eglChooseConfig(dpy, s_configAttribs, 0, 0, &numConfigs);
412 if (numConfigs) {
413 EGLConfig* const configs = new EGLConfig[numConfigs];
414 eglChooseConfig(dpy, s_configAttribs, configs, numConfigs, &n);
/frameworks/base/media/libstagefright/tests/
H A DSurfaceMediaSource_test.cpp73 EGLint numConfigs = 0; local
75 1, &numConfigs));
/frameworks/media/libvideoeditor/lvpp/
H A DNativeWindowRenderer.cpp197 EGLint numConfigs = -1; local
206 eglChooseConfig(mEglDisplay, configAttribs, &config, 1, &numConfigs);
/frameworks/base/opengl/libagl/
H A Degl.cpp1184 size_t numConfigs = NELEM(gConfigs); local
1186 if (uint32_t(index) >= numConfigs)
1425 GLint numConfigs = NELEM(gConfigs);
1427 *num_config = numConfigs;
1431 for (i=0 ; i<numConfigs && i<config_size ; i++) {
1460 int numConfigs = NELEM(gConfigs); local
1461 uint32_t possibleMatch = (1<<numConfigs)-1;
1466 for (int i=0 ; possibleMatch && i<numConfigs ; i++) {
1484 for (int i=0 ; possibleMatch && i<numConfigs ; i++) {
1501 for (int i=0 ; config_size && i<numConfigs ;
[all...]

Completed in 247 milliseconds