Searched refs:numConfig (Results 1 - 4 of 4) sorted by relevance

/frameworks/native/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp235 EGLint numConfig = 0; local
236 EGLint returnVal = eglGetConfigs(dpy, NULL, 0, &numConfig);
242 printf("Number of EGL configuration: %d\n", numConfig);
244 EGLConfig* configs = (EGLConfig*) malloc(sizeof(EGLConfig) * numConfig);
250 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig);
257 for(int i = 0; i < numConfig; i++) {
/frameworks/native/opengl/tests/gl_basic/
H A Dgl_basic.cpp161 EGLint numConfig = 0; local
162 EGLint returnVal = eglGetConfigs(dpy, NULL, 0, &numConfig);
168 printf("Number of EGL configurations: %d\n", numConfig);
170 EGLConfig* configs = (EGLConfig*) malloc(sizeof(EGLConfig) * numConfig);
176 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig);
183 for(int i = 0; i < numConfig; i++) {
/frameworks/native/opengl/tests/gl2_copyTexImage/
H A Dgl2_copyTexImage.cpp334 EGLint numConfig = 0; local
335 EGLint returnVal = eglGetConfigs(dpy, NULL, 0, &numConfig);
341 printf("Number of EGL configuration: %d\n", numConfig);
343 EGLConfig* configs = (EGLConfig*) malloc(sizeof(EGLConfig) * numConfig);
349 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig);
356 for(int i = 0; i < numConfig; i++) {
/frameworks/av/services/audioflinger/
H A DThreads.cpp834 size_t numConfig = mConfigEvents.size(); local
835 if (numConfig) {
836 for (size_t i = 0; i < numConfig; i++) {

Completed in 74 milliseconds