HomeSort by relevance Sort by last modified time
    Searched refs:numConfig (Results 1 - 12 of 12) 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/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++) {
  /external/chromium_org/third_party/angle/src/libEGL/
Display.h 40 bool getConfigs(EGLConfig *configs, const EGLint *attribList, EGLint configSize, EGLint *numConfig);
Config.h 101 bool getConfigs(EGLConfig *configs, const EGLint *attribList, EGLint configSize, EGLint *numConfig);
Config.cpp 244 bool ConfigSet::getConfigs(EGLConfig *configs, const EGLint *attribList, EGLint configSize, EGLint *numConfig)
318 *numConfig = index;
322 *numConfig = passed.size();
Display.cpp 137 bool Display::getConfigs(EGLConfig *configs, const EGLint *attribList, EGLint configSize, EGLint *numConfig)
139 return mConfigSet.getConfigs(configs, attribList, configSize, 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/Camera2/src/com/android/camera/
SurfaceTextureRenderer.java 208 int[] numConfig = new int[1];
209 if (!egl.eglChooseConfig(display, CONFIG_SPEC, null, 0, numConfig)) {
213 int numConfigs = numConfig[0];
220 display, CONFIG_SPEC, configs, numConfigs, numConfig)) {
  /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++) {
  /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);
  /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/chromium_org/third_party/libusb/src/libusb/os/
darwin_usb.c 469 UInt8 i, numConfig;
474 kresult = (*(priv->device))->GetNumberOfConfigurations (priv->device, &numConfig);
478 for (i = 0 ; i < numConfig ; i++) {
    [all...]

Completed in 451 milliseconds