HomeSort by relevance Sort by last modified time
    Searched defs:numConfig (Results 1 - 8 of 8) sorted by null

  /frameworks/native/opengl/tests/gl2_basic/
gl2_basic.cpp 230 EGLint numConfig = 0;
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/gl2_copyTexImage/
gl2_copyTexImage.cpp 334 EGLint numConfig = 0;
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/native/opengl/tests/gl_basic/
gl_basic.cpp 161 EGLint numConfig = 0;
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++) {
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
MosaicRendererSurfaceView.java 153 int[] numConfig = new int[1];
154 egl.eglChooseConfig(display, CONFIG_ATTRIBUTES, null, 0, numConfig);
156 int numConfigs = numConfig[0];
165 egl.eglChooseConfig(display, CONFIG_ATTRIBUTES, configs, numConfigs, numConfig);
  /packages/apps/Camera/src/com/android/camera/
MosaicPreviewRenderer.java 246 int[] numConfig = new int[1];
247 if (!egl.eglChooseConfig(display, CONFIG_SPEC, null, 0, numConfig)) {
251 int numConfigs = numConfig[0];
258 display, CONFIG_SPEC, configs, numConfigs, numConfig)) {
  /packages/apps/Gallery2/src/com/android/camera/
MosaicPreviewRenderer.java 247 int[] numConfig = new int[1];
248 if (!egl.eglChooseConfig(display, CONFIG_SPEC, null, 0, numConfig)) {
252 int numConfigs = numConfig[0];
259 display, CONFIG_SPEC, configs, numConfigs, numConfig)) {
  /external/libusb/libusb/os/
darwin_usb.c 362 UInt8 i, numConfig;
367 kresult = (*(priv->device))->GetNumberOfConfigurations (priv->device, &numConfig);
371 for (i = 0 ; i < numConfig ; i++) {
    [all...]
  /external/libusb_aah/libusb/os/
darwin_usb.c 432 UInt8 i, numConfig;
437 kresult = (*(priv->device))->GetNumberOfConfigurations (priv->device, &numConfig);
441 for (i = 0 ; i < numConfig ; i++) {
    [all...]

Completed in 148 milliseconds