HomeSort by relevance Sort by last modified time
    Searched refs:numConfigs (Results 26 - 50 of 55) sorted by null

12 3

  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-win32.c 100 EGLint numConfigs;
122 success = eglGetConfigs(sEglDisplay, NULL, 0, &numConfigs);
125 &sEglConfig, 1, &numConfigs);
  /frameworks/native/opengl/tests/gl2_copyTexImage/
gl2_copyTexImage.cpp 410 EGLint numConfigs = -1, n = 0;
411 eglChooseConfig(dpy, s_configAttribs, 0, 0, &numConfigs);
412 if (numConfigs) {
413 EGLConfig* const configs = new EGLConfig[numConfigs];
414 eglChooseConfig(dpy, s_configAttribs, configs, numConfigs, &n);
  /frameworks/rs/driver/
rsdGL.cpp 239 dc->gl.egl.numConfigs = -1;
255 EGLint numConfigs = -1, n = 0;
263 ret = eglChooseConfig(dc->gl.egl.display, configAttribs, 0, 0, &numConfigs);
265 if (numConfigs > 0) {
270 if (numConfigs) {
271 EGLConfig* const configs = new EGLConfig[numConfigs];
275 configAttribs, configs, numConfigs, &n);
rsdGL.h 34 EGLint numConfigs;
  /frameworks/base/media/mca/filterfw/native/core/
gl_env.cpp 141 EGLint numConfigs = -1;
156 eglChooseConfig(display(), configAttribs, &config, 1, &numConfigs);
157 if (numConfigs < 1) {
  /hardware/libhardware/include/hardware/
hwcomposer.h 554 * allocated by the caller is passed in *numConfigs; getDisplayConfigs must
557 * *numConfigs. If *numConfigs is zero on entry, then configs may be NULL.
571 uint32_t* configs, size_t* numConfigs);
  /development/ndk/platforms/android-9/samples/native-activity/jni/
main.c 79 EGLint numConfigs;
91 eglChooseConfig(display, attribs, &config, 1, &numConfigs);
  /external/webrtc/src/modules/audio_processing/test/android/apmtest/jni/
main.c 79 EGLint numConfigs;
91 eglChooseConfig(display, attribs, &config, 1, &numConfigs);
  /frameworks/native/opengl/tests/filter/
filter.cpp 32 EGLint numConfigs = -1;
55 eglChooseConfig(dpy, s_configAttribs, &config, 1, &numConfigs);
  /hardware/qcom/display/libhwcomposer/
hwc.cpp 490 uint32_t* configs, size_t* numConfigs) {
497 if(*numConfigs > 0) {
499 *numConfigs = 1;
507 if(*numConfigs > 0) {
509 *numConfigs = 1;
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraGLTest.java 257 int[] numConfigs = new int[1];
261 if (egl.eglGetConfigs(display, null, 0, numConfigs)) {
262 EGLConfig[] configs = new EGLConfig[numConfigs[0]];
263 if (egl.eglGetConfigs(display, configs, numConfigs[0], numConfigs)) {
265 for (int i = 0; i < numConfigs[0]; i++) {
274 + "(" + i + "/" + numConfigs[0] + "): "
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
GLUtils.cpp 272 EGLint numConfigs;
280 eglChooseConfig(display, configAttribs, &config, 1, &numConfigs);
282 if (numConfigs != 1)
283 ALOGI("eglPbufferConfig failed (%d)\n", numConfigs);
  /frameworks/native/libs/gui/tests/
SurfaceTextureClient_test.cpp 59 EGLint numConfigs = 0;
61 &myConfig, 1, &numConfigs));
147 EGLint numConfigs = 0;
159 &numConfigs));
703 EGLint numConfigs = 0;
709 &numConfigs));
  /frameworks/av/libvideoeditor/lvpp/
NativeWindowRenderer.cpp 196 EGLint numConfigs = -1;
205 eglChooseConfig(mEglDisplay, configAttribs, &config, 1, &numConfigs);
  /frameworks/native/cmds/flatland/
GLHelper.cpp 54 EGLint numConfigs = 0;
65 &numConfigs);
  /frameworks/native/opengl/libagl/
egl.cpp     [all...]
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
GLSurfaceViewCustom.java     [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GLSurfaceView.java 780 int numConfigs = num_config[0];
782 if (numConfigs <= 0) {
787 EGLConfig[] configs = new EGLConfig[numConfigs];
788 if (!egl.eglChooseConfig(display, mConfigSpec, configs, numConfigs,
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLSurfaceView.java     [all...]
  /frameworks/native/opengl/tests/tritex/
tritex.cpp 122 EGLint numConfigs = 1;
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 246 EGLint numConfigs;
254 eglChooseConfig(display, attribs, &config, 1, &numConfigs);
  /frameworks/native/opengl/tests/gl_basic/
gl_basic.cpp 214 EGLint numConfigs = 1;
  /device/generic/goldfish/opengl/system/egl/
egl.cpp 560 GLint numConfigs = s_display.getNumConfigs();
562 *num_config = numConfigs;
567 for (i=0 ; i<numConfigs && i<config_size ; i++) {
    [all...]
  /frameworks/av/media/libstagefright/tests/
SurfaceMediaSource_test.cpp 73 EGLint numConfigs = 0;
75 1, &numConfigs));
    [all...]
  /frameworks/native/services/surfaceflinger/
SurfaceFlinger.cpp 264 EGLint numConfigs = -1, n=0;
265 eglGetConfigs(dpy, NULL, 0, &numConfigs);
266 EGLConfig* const configs = new EGLConfig[numConfigs];
267 eglChooseConfig(dpy, attrs, configs, numConfigs, &n);
    [all...]

Completed in 377 milliseconds

12 3