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

/frameworks/native/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp230 EGLint numConfig = 0; local
231 EGLint returnVal = eglGetConfigs(dpy, NULL, 0, &numConfig);
237 printf("Number of EGL configuration: %d\n", numConfig);
239 EGLConfig* configs = (EGLConfig*) malloc(sizeof(EGLConfig) * numConfig);
245 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig);
252 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.cpp595 size_t numConfig = mConfigEvents.size(); local
596 if (numConfig) {
597 for (size_t i = 0; i < numConfig; i++) {

Completed in 92 milliseconds