/frameworks/base/opengl/tests/EGLTest/ |
H A D | EGL_test.cpp | 65 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs); 102 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
|
/frameworks/base/libs/ui/ |
H A D | EGLUtils.cpp | 74 if (eglChooseConfig(dpy, attrs, configs, numConfigs, &n) == EGL_FALSE) {
|
/frameworks/base/opengl/tests/gl2_jni/src/com/android/gl2jni/ |
H A D | GL2JNIView.java | 124 egl.eglChooseConfig(display, s_configAttribs2, null, 0, num_config); 132 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
|
/frameworks/base/opengl/tests/gl_perfapp/src/com/android/glperf/ |
H A D | GLPerfView.java | 124 egl.eglChooseConfig(display, s_configAttribs2, null, 0, num_config); 132 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
|
/frameworks/base/opengl/tests/gldual/src/com/android/gldual/ |
H A D | GLDualGL2View.java | 127 egl.eglChooseConfig(display, s_configAttribs2, null, 0, num_config); 135 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
|
/frameworks/base/opengl/java/javax/microedition/khronos/egl/ |
H A D | EGL10.java | 97 boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, EGLConfig[] configs, int config_size, int[] num_config); method in interface:EGL10
|
/frameworks/base/core/java/android/view/ |
H A D | HardwareRenderer.java | 592 sEgl.eglChooseConfig(sEglDisplay, configSpec, null, 0, configsCount); 595 sEgl.eglChooseConfig(sEglDisplay, configSpec, debugConfigs, 603 if (!sEgl.eglChooseConfig(sEglDisplay, configSpec, configs, 1, configsCount)) { 604 throw new IllegalArgumentException("eglChooseConfig failed " +
|
/frameworks/base/opengl/java/android/opengl/ |
H A D | EGLLogWrapper.java | 47 public boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, method in class:EGLLogWrapper 49 begin("eglChooseConfig"); 55 boolean result = mEgl10.eglChooseConfig(display, attrib_list, configs,
|
H A D | GLSurfaceView.java | 828 * {@link EGL10#eglChooseConfig} and iterating through the results. Please consult the 829 * EGL specification available from The Khronos Group to learn how to call eglChooseConfig. 845 if (!egl.eglChooseConfig(display, mConfigSpec, null, 0, 847 throw new IllegalArgumentException("eglChooseConfig failed"); 858 if (!egl.eglChooseConfig(display, mConfigSpec, configs, numConfigs, 860 throw new IllegalArgumentException("eglChooseConfig#2 failed");
|
/frameworks/base/opengl/tests/gl2_copyTexImage/ |
H A D | gl2_copyTexImage.cpp | 411 eglChooseConfig(dpy, s_configAttribs, 0, 0, &numConfigs); 414 eglChooseConfig(dpy, s_configAttribs, configs, numConfigs, &n);
|
/frameworks/base/opengl/java/com/google/android/gles_jni/ |
H A D | EGLImpl.java | 36 public native boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, EGLConfig[] configs, int config_size, int[] num_config); method in class:EGLImpl
|
/frameworks/base/opengl/tests/angeles/include/GLES/ |
H A D | egl.h | 203 GLAPI EGLBoolean APIENTRY eglChooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config);
|
/frameworks/base/opengl/tests/filter/ |
H A D | filter.cpp | 55 eglChooseConfig(dpy, s_configAttribs, &config, 1, &numConfigs);
|
/frameworks/base/libs/rs/driver/ |
H A D | rsdGL.cpp | 214 rsc->setWatchdogGL("eglChooseConfig", __LINE__, __FILE__); 215 ret = eglChooseConfig(dc->gl.egl.display, configAttribs, 0, 0, &numConfigs); 221 rsc->setWatchdogGL("eglChooseConfig", __LINE__, __FILE__); 222 ret = eglChooseConfig(dc->gl.egl.display, 225 checkEglError("eglChooseConfig", ret);
|
/frameworks/base/opengl/include/EGL/ |
H A D | egl.h | 259 EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list,
|
/frameworks/base/services/surfaceflinger/DisplayHardware/ |
H A D | DisplayHardware.cpp | 113 eglChooseConfig(dpy, attrs, configs, numConfigs, &n);
|
/frameworks/base/libs/gui/tests/ |
H A D | SurfaceTextureClient_test.cpp | 50 EXPECT_TRUE(eglChooseConfig(mEglDisplay, getConfigAttribs(), 141 EXPECT_TRUE(eglChooseConfig(dpy, configAttribs, &myConfig, 1, 641 EXPECT_TRUE(eglChooseConfig(mEglDisplay, configAttribs, &myConfig, 1,
|
H A D | SurfaceTexture_test.cpp | 62 EXPECT_TRUE(eglChooseConfig(mEglDisplay, getConfigAttribs(), &mGlConfig, 1090 EXPECT_TRUE(eglChooseConfig(mEglDisplay, getConfigAttribs(), &myConfig,
|
/frameworks/base/opengl/libs/EGL/ |
H A D | eglApi.cpp | 204 EGLBoolean eglChooseConfig( EGLDisplay dpy, const EGLint *attrib_list, function 267 // cnx->egl.eglChooseConfig() -- but we don't have to loop 272 res = cnx->egl.eglChooseConfig( 293 if (cnx->egl.eglChooseConfig(
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
H A D | GLTextureViewActivity.java | 411 if (!mEgl.eglChooseConfig(mEglDisplay, configSpec, configs, 1, configsCount)) { 412 throw new IllegalArgumentException("eglChooseConfig failed " +
|
/frameworks/media/libvideoeditor/lvpp/ |
H A D | NativeWindowRenderer.cpp | 206 eglChooseConfig(mEglDisplay, configAttribs, &config, 1, &numConfigs);
|
/frameworks/base/cmds/bootanimation/ |
H A D | BootAnimation.cpp | 246 eglChooseConfig(display, attribs, &config, 1, &numConfigs);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | ImageWallpaper.java | 610 if (!mEgl.eglChooseConfig(mEglDisplay, configSpec, configs, 1, configsCount)) { 611 throw new IllegalArgumentException("eglChooseConfig failed " +
|
/frameworks/base/core/jni/ |
H A D | com_google_android_gles_jni_EGLImpl.cpp | 207 success = eglChooseConfig(dpy, attrib_base, configs ? nativeConfigs : 0, config_size, &num); 543 {"eglChooseConfig", "(" DISPLAY "[I[" CONFIG "I[I)Z", (void*)jni_eglChooseConfig },
|
/frameworks/base/media/libstagefright/tests/ |
H A D | SurfaceMediaSource_test.cpp | 74 EXPECT_TRUE(eglChooseConfig(mEglDisplay, getConfigAttribs(), &mGlConfig,
|