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

/frameworks/base/opengl/tests/filter/
H A Dfilter.cpp32 EGLint numConfigs = -1; local
55 eglChooseConfig(dpy, s_configAttribs, &config, 1, &numConfigs);
/frameworks/base/libs/ui/
H A DEGLUtils.cpp61 EGLint numConfigs = -1, n=0; local
76 if (eglGetConfigs(dpy, NULL, 0, &numConfigs) == EGL_FALSE)
79 EGLConfig* const configs = (EGLConfig*)malloc(sizeof(EGLConfig)*numConfigs);
80 if (eglChooseConfig(dpy, attrs, configs, numConfigs, &n) == EGL_FALSE) {
/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/surfaceflinger/DisplayHardware/
H A DDisplayHardware.cpp125 EGLint numConfigs=0; local
135 eglGetConfigs(display, NULL, 0, &numConfigs);
156 LOGI("# of configs : %d", numConfigs);
/frameworks/base/opengl/tests/gl_basic/
H A Dgl_basic.cpp215 EGLint numConfigs = 1; local
/frameworks/base/opengl/tests/tritex/
H A Dtritex.cpp122 EGLint numConfigs = 1; local
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp222 EGLint numConfigs; local
/frameworks/base/opengl/libs/EGL/
H A Degl.cpp158 state(NOT_INITIALIZED), numConfigs(0) { }
162 EGLint numConfigs; member in struct:android::egl_display_t::DisplayImpl
371 return (i>0 ? dp->disp[0].numConfigs : 0) + index;
378 size_t numConfigs = dp->disp[0].numConfigs; local
379 i = configId / numConfigs;
380 index = configId % numConfigs;
490 if (index >= dp->disp[impl].numConfigs) {
719 &dp->disp[i].numConfigs))
723 dp->disp[i].numConfigs,
[all...]
/frameworks/base/opengl/libagl/
H A Degl.cpp1262 size_t numConfigs = NELEM(gConfigs); local
1264 if (uint32_t(index) >= numConfigs)
1503 GLint numConfigs = NELEM(gConfigs);
1505 *num_config = numConfigs;
1509 for (i=0 ; i<numConfigs && i<config_size ; i++) {
1533 int numConfigs = NELEM(gConfigs); local
1534 uint32_t possibleMatch = (1<<numConfigs)-1;
1539 for (int i=0 ; possibleMatch && i<numConfigs ; i++) {
1557 for (int i=0 ; possibleMatch && i<numConfigs ; i++) {
1574 for (int i=0 ; config_size && i<numConfigs ;
[all...]

Completed in 159 milliseconds