/cts/tests/tests/nativeopengl/standalone/jni/tests/ |
EGLCleanup_test.cpp | 258 EGLint numConfigs = 0; 260 1, &numConfigs)) {
|
GLTest_test.cpp | 54 EGLint numConfigs = 0; 56 1, &numConfigs));
|
/external/jmonkeyengine/engine/src/android/com/jme3/system/android/ |
AndroidConfigChooser.java | 210 int numConfigs = num_config[0]; 212 if (numConfigs <= 0) { 218 EGLConfig[] configs = new EGLConfig[numConfigs]; 219 if (!egl.eglChooseConfig(display, mConfigSpec, configs, numConfigs,
|
/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);
|
/external/chromium_org/third_party/skia/src/views/win/ |
SkOSWindow_win.cpp | 418 EGLint numConfigs; 419 if (!eglGetConfigs(display, NULL, 0, &numConfigs)) { 438 if (eglChooseConfig(display, configAttribList, eglConfig, 1, &numConfigs)) { 439 SkASSERT(numConfigs > 0); 444 if (!eglChooseConfig(display, configAttribList, eglConfig, 1, &numConfigs)) {
|
/external/skia/src/views/win/ |
SkOSWindow_win.cpp | 418 EGLint numConfigs; 419 if (!eglGetConfigs(display, NULL, 0, &numConfigs)) { 438 if (eglChooseConfig(display, configAttribList, eglConfig, 1, &numConfigs)) { 439 SkASSERT(numConfigs > 0); 444 if (!eglChooseConfig(display, configAttribList, eglConfig, 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 | 238 dc->gl.egl.numConfigs = -1; 254 EGLint numConfigs = -1, n = 0; 262 ret = eglChooseConfig(dc->gl.egl.display, configAttribs, 0, 0, &numConfigs); 264 if (numConfigs > 0) { 269 if (numConfigs) { 270 EGLConfig* const configs = new EGLConfig[numConfigs]; 274 configAttribs, configs, numConfigs, &n);
|
rsdGL.h | 34 EGLint numConfigs;
|
/frameworks/base/media/mca/filterfw/native/core/ |
gl_env.cpp | 143 EGLint numConfigs = -1; 158 eglChooseConfig(display(), configAttribs, &config, 1, &numConfigs); 159 if (numConfigs < 1) {
|
/hardware/libhardware/include/hardware/ |
hwcomposer.h | 584 * allocated by the caller is passed in *numConfigs; getDisplayConfigs must 587 * *numConfigs. If *numConfigs is zero on entry, then configs may be NULL. 601 uint32_t* configs, size_t* numConfigs);
|
/cts/suite/cts/deviceTests/opengl/jni/graphics/ |
Renderer.cpp | 99 EGLint numConfigs = 0; 100 if (!eglChooseConfig(mEglDisplay, configAttribs, &mGlConfig, 1, &numConfigs)
|
/cts/tests/tests/opengl/src/android/opengl/cts/ |
WrapperTest.java | 262 int[] numConfigs = new int[1]; 264 numConfigs, 0)) {
|
/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/msm8960/libhwcomposer/ |
hwc.cpp | 490 uint32_t* configs, size_t* numConfigs) { 497 if(*numConfigs > 0) { 499 *numConfigs = 1; 507 if(*numConfigs > 0) { 509 *numConfigs = 1;
|
/hardware/qcom/display/msm8974/libhwcomposer/ |
hwc.cpp | 585 uint32_t* configs, size_t* numConfigs) { 592 if(*numConfigs > 0) { 594 *numConfigs = 1; 602 if(*numConfigs > 0) { 604 *numConfigs = 1;
|
/hardware/qcom/display/msm8x26/libhwcomposer/ |
hwc.cpp | 491 uint32_t* configs, size_t* numConfigs) { 498 if(*numConfigs > 0) { 500 *numConfigs = 1; 508 if(*numConfigs > 0) { 510 *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...] |
/frameworks/native/libs/gui/tests/ |
SurfaceTextureClient_test.cpp | 63 EGLint numConfigs = 0; 65 &myConfig, 1, &numConfigs)); 151 EGLint numConfigs = 0; 163 &numConfigs)); 699 EGLint numConfigs = 0; 705 &numConfigs));
|
/external/chromium_org/third_party/angle/src/libEGL/ |
Display.cpp | 88 int numConfigs = mRenderer->generateConfigs(&descList); 91 for (int i = 0; i < numConfigs; ++i)
|
/frameworks/av/libvideoeditor/lvpp/ |
NativeWindowRenderer.cpp | 196 EGLint numConfigs = -1; 205 eglChooseConfig(mEglDisplay, configAttribs, &config, 1, &numConfigs);
|
/frameworks/native/cmds/flatland/ |
GLHelper.cpp | 57 EGLint numConfigs = 0; 68 &numConfigs);
|
/frameworks/native/opengl/libagl/ |
egl.cpp | [all...] |