Searched refs:numConfigs (Results 1 - 3 of 3) sorted by relevance

/ndk/samples/hello-gl2/src/com/android/gl2jni/
H A DGL2JNIView.java165 int numConfigs = num_config[0];
167 if (numConfigs <= 0) {
173 EGLConfig[] configs = new EGLConfig[numConfigs];
174 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
223 int numConfigs = configs.length;
224 Log.w(TAG, String.format("%d configurations", numConfigs));
225 for (int i = 0; i < numConfigs; i++) {
/ndk/samples/san-angeles/jni/
H A Dapp-linux.c114 EGLint numConfigs; local
128 success = eglGetConfigs(sEglDisplay, NULL, 0, &numConfigs);
131 &sEglConfig, 1, &numConfigs);
H A Dapp-win32.c100 EGLint numConfigs; local
122 success = eglGetConfigs(sEglDisplay, NULL, 0, &numConfigs);
125 &sEglConfig, 1, &numConfigs);

Completed in 54 milliseconds