HomeSort by relevance Sort by last modified time
    Searched refs:eglChooseConfig (Results 1 - 25 of 158) sorted by null

1 2 3 4 5 6 7

  /device/generic/goldfish/opengl/system/egl/
egl_ftable.h 26 {"eglChooseConfig", (void *)eglChooseConfig},
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
egl_ftable.h 26 {"eglChooseConfig", (void *)eglChooseConfig},
egl_dispatch.h 28 eglChooseConfig_t eglChooseConfig;
73 eglChooseConfig_t set_eglChooseConfig(eglChooseConfig_t f) { eglChooseConfig_t retval = eglChooseConfig; eglChooseConfig = f; return retval;}
  /frameworks/native/opengl/tools/glgen/specs/egl/
checks.spec 3 eglChooseConfig check configs config_size check num_config 1 sentinel attrib_list EGL_NONE
EGL14.spec 7 EGLBoolean eglChooseConfig ( EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config )
  /external/deqp/framework/egl/wrapper/
eglwStaticLibrary14.inl 8 { "eglChooseConfig", (deFunctionPtr)eglChooseConfig },
eglwStaticLibrary15.inl 8 { "eglChooseConfig", (deFunctionPtr)eglChooseConfig },
  /frameworks/native/opengl/tests/EGLTest/
EGL_test.cpp 67 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
101 EXPECT_TRUE(eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs));
141 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
  /cts/tests/tests/graphics/src/android/opengl/cts/
EglConfigTest.java 90 if (egl.eglChooseConfig(display, attributeList, null, 0, numConfigs)) {
92 if (egl.eglChooseConfig(display, attributeList, configs, configs.length,
106 throw new IllegalStateException("Couldn't call eglChooseConfig (1)");
109 throw new IllegalStateException("Couldn't call eglChooseConfig (2)");
EglContextTest.java 143 if (!EGL14.eglChooseConfig(
145 throw new RuntimeException("eglChooseConfig failed");
  /development/ndk/sources/android/ndk_helper/
GLContext.cpp 114 eglChooseConfig( display_, attribs, &config_, 1, &num_configs );
123 eglChooseConfig( display_, attribs, &config_, 1, &num_configs );
  /packages/apps/Camera2/src/com/android/camera/
SurfaceTextureRenderer.java 192 if (!egl.eglChooseConfig(display, CONFIG_SPEC, null, 0, numConfig)) {
193 throw new IllegalArgumentException("eglChooseConfig failed");
202 if (!egl.eglChooseConfig(
204 throw new IllegalArgumentException("eglChooseConfig#2 failed");
  /frameworks/native/opengl/tests/include/
EGLUtils.h 95 if (eglChooseConfig(dpy, attrs, configs, numConfigs, &n) == EGL_FALSE) {
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
importgl.h 65 FNDEF(EGLBoolean, eglChooseConfig, (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config));
117 #define eglChooseConfig FNPTR(eglChooseConfig)
importgl.c 108 IMPORT_FUNC(eglChooseConfig);
  /external/skia/platform_tools/android/app/src/com/skia/
SkiaSampleView.java 237 if (!egl.eglChooseConfig(display, configSpec, null, 0, value)) {
265 if (!egl.eglChooseConfig(display, configSpec, null, 0, value)) {
278 if (!egl.eglChooseConfig(display, configSpec, configs, numConfigs, value)) {
  /frameworks/base/media/mca/filterfw/jni/
jni_gl_environment.cpp 166 eglChooseConfig(gl_env->display(), configAttribs, &config, 1, &numConfigs);
235 eglChooseConfig(gl_env->display(), configAttribs, &config, 1, &numConfigs);
333 eglChooseConfig(gl_env->display(), configAttribs, &config, 1, &numConfigs);
  /cts/tests/tests/effect/src/android/effect/cts/
GLEnv.java 54 egl.eglChooseConfig(mEGLDisplay, configSpec, configs, 1, num_config);
55 checkForEGLErrors("eglChooseConfig");
  /cts/tests/tests/nativeopengl/standalone/jni/tests/
EGLCreateContext_test.cpp 68 ASSERT_TRUE(eglChooseConfig(mEglDisplay, getConfigAttribs(),
  /external/skia/src/gpu/gl/angle/
SkANGLEGLContext.cpp 80 eglChooseConfig(fDisplay, configAttribs, &surfaceConfig, 1, &numConfigs);
  /development/ndk/platforms/android-5/samples/hello-gl2/src/com/android/gl2jni/
GL2JNIView.java 59 * specification to eglChooseConfig() that has the attribute
163 egl.eglChooseConfig(display, s_configAttribs2, null, 0, num_config);
174 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
  /frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
GL2JNIView.java 124 egl.eglChooseConfig(display, s_configAttribs2, null, 0, num_config);
132 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
  /frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
GLPerfView.java 124 egl.eglChooseConfig(display, s_configAttribs2, null, 0, num_config);
132 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
  /frameworks/native/opengl/tests/gldual/src/com/android/gldual/
GLDualGL2View.java 127 egl.eglChooseConfig(display, s_configAttribs2, null, 0, num_config);
135 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
  /packages/apps/Camera/src/com/android/camera/
MosaicPreviewRenderer.java 247 if (!egl.eglChooseConfig(display, CONFIG_SPEC, null, 0, numConfig)) {
248 throw new IllegalArgumentException("eglChooseConfig failed");
257 if (!egl.eglChooseConfig(
259 throw new IllegalArgumentException("eglChooseConfig#2 failed");

Completed in 1683 milliseconds

1 2 3 4 5 6 7