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

1 2 3 4

  /frameworks/native/opengl/tests/swapinterval/
swapinterval.cpp 64 eglGetConfigAttrib(dpy, config, EGL_RED_SIZE, &r);
65 eglGetConfigAttrib(dpy, config, EGL_GREEN_SIZE, &g);
66 eglGetConfigAttrib(dpy, config, EGL_BLUE_SIZE, &b);
67 eglGetConfigAttrib(dpy, config, EGL_ALPHA_SIZE, &a);
68 eglGetConfigAttrib(dpy, config, EGL_NATIVE_VISUAL_ID, &vid);
  /frameworks/native/opengl/tests/EGLTest/
EGL_test.cpp 75 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
78 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
81 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
141 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
144 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
147 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
150 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]);
  /device/generic/goldfish/opengl/system/egl/
egl_ftable.h 27 {"eglGetConfigAttrib", (void *)eglGetConfigAttrib},
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
egl_ftable.h 27 {"eglGetConfigAttrib", (void *)eglGetConfigAttrib},
egl_dispatch.h 29 eglGetConfigAttrib_t eglGetConfigAttrib;
74 eglGetConfigAttrib_t set_eglGetConfigAttrib(eglGetConfigAttrib_t f) { eglGetConfigAttrib_t retval = eglGetConfigAttrib; eglGetConfigAttrib = f; return retval;}
  /sdk/emulator/opengl/tests/EGL_host_wrapper/
egl_ftable.h 27 {"eglGetConfigAttrib", (void *)eglGetConfigAttrib},
egl_dispatch.h 29 eglGetConfigAttrib_t eglGetConfigAttrib;
74 eglGetConfigAttrib_t set_eglGetConfigAttrib(eglGetConfigAttrib_t f) { eglGetConfigAttrib_t retval = eglGetConfigAttrib; eglGetConfigAttrib = f; return retval;}
  /external/jmonkeyengine/engine/src/android/com/jme3/system/android/
AndroidConfigChooser.java 111 egl.eglGetConfigAttrib(display, conf, EGL10.EGL_RED_SIZE, value);
115 egl.eglGetConfigAttrib(display, conf, EGL10.EGL_ALPHA_SIZE, value);
138 egl.eglGetConfigAttrib(display, conf, EGL10.EGL_RENDERABLE_TYPE, value);
157 egl.eglGetConfigAttrib(display, conf, EGL10.EGL_RED_SIZE, value);
160 egl.eglGetConfigAttrib(display, conf, EGL10.EGL_GREEN_SIZE, value);
163 egl.eglGetConfigAttrib(display, conf, EGL10.EGL_BLUE_SIZE, value);
166 egl.eglGetConfigAttrib(display, conf, EGL10.EGL_ALPHA_SIZE, value);
169 egl.eglGetConfigAttrib(display, conf, EGL10.EGL_DEPTH_SIZE, value);
172 egl.eglGetConfigAttrib(display, conf, EGL10.EGL_STENCIL_SIZE, value);
175 egl.eglGetConfigAttrib(display, conf, EGL10.EGL_RENDERABLE_TYPE, value)
    [all...]
  /frameworks/native/opengl/tools/glgen/specs/egl/
checks.spec 4 eglGetConfigAttrib check value 1
EGL14.spec 8 EGLBoolean eglGetConfigAttrib ( EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value )
  /sdk/emulator/opengl/tests/ut_renderer/
RendererSurface.cpp 42 if (eglGetConfigAttrib(eglDisplay, eglConfig, EGL_BUFFER_SIZE, &ibuf)) {
45 fprintf(stderr, "eglGetConfigAttrib error: %d\n", eglGetError());
47 if (eglGetConfigAttrib(eglDisplay, eglConfig, EGL_DEPTH_SIZE, &ibuf)) {
50 fprintf(stderr, "eglGetConfigAttrib error: %d\n", eglGetError());
  /sdk/emulator/opengl/host/libs/libOpenglRender/
FBConfig.cpp 103 s_egl.eglGetConfigAttrib(dpy, configs[i],
111 s_egl.eglGetConfigAttrib(dpy, configs[i], EGL_RED_SIZE, &redSize);
112 s_egl.eglGetConfigAttrib(dpy, configs[i], EGL_BLUE_SIZE, &blueSize);
113 s_egl.eglGetConfigAttrib(dpy, configs[i], EGL_GREEN_SIZE, &greenSize);
217 s_egl.eglGetConfigAttrib(dpy, matchedConfigs[matchedIdx], EGL_CONFIG_ID, &sCfgId);
242 s_egl.eglGetConfigAttrib(p_eglDpy, p_eglCfg, s_configAttribs[i], &m_attribValues[i]);
EGLDispatch.h 29 eglGetConfigAttrib_t eglGetConfigAttrib;
  /frameworks/native/opengl/tests/configdump/
configdump.cpp 81 eglGetConfigAttrib(dpy, configs[i], attributes[attr].attribute, &value);
  /frameworks/native/opengl/tests/include/
EGLUtils.h 104 eglGetConfigAttrib(dpy, configs[i], EGL_NATIVE_VISUAL_ID, &nativeVisualId);
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
importgl.h 70 FNDEF(EGLBoolean, eglGetConfigAttrib, (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value));
122 #define eglGetConfigAttrib FNPTR(eglGetConfigAttrib)
importgl.c 113 IMPORT_FUNC(eglGetConfigAttrib);
  /external/webkit/Source/WebCore/platform/graphics/openvg/
EGLDisplayOpenVG.cpp 133 EGLBoolean success = eglGetConfigAttrib(m_display, config, EGL_CONFIG_ID, &configId);
176 EGLBoolean success = eglGetConfigAttrib(m_display, config, EGL_CONFIG_ID, &configId);
257 EGLBoolean success = eglGetConfigAttrib(m_display, config, EGL_CONFIG_ID, &surfaceConfigId);
281 EGLBoolean success = eglGetConfigAttrib(m_display, config, EGL_CONFIG_ID, &surfaceConfigId);
299 EGLBoolean success = eglGetConfigAttrib(m_display, config, EGL_CONFIG_ID, &surfaceConfigId);
  /cts/tests/tests/graphics/src/android/opengl/cts/
EglConfigTest.java 97 if (egl.eglGetConfigAttrib(display, configs[i], EGL10.EGL_CONFIG_ID,
101 throw new IllegalStateException("Couldn't call eglGetConfigAttrib");
  /frameworks/native/opengl/tests/lib/
glTestLib.cpp 111 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute,
  /development/ndk/platforms/android-5/samples/hello-gl2/src/com/android/gl2jni/
GL2JNIView.java 215 if (egl.eglGetConfigAttrib(display, config, attribute, mValue)) {
307 if ( egl.eglGetConfigAttrib(display, config, attribute, value)) {
  /frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
GL2JNIView.java 171 if (egl.eglGetConfigAttrib(display, config, attribute, mValue)) {
263 if ( egl.eglGetConfigAttrib(display, config, attribute, value)) {
  /frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
GLPerfView.java 171 if (egl.eglGetConfigAttrib(display, config, attribute, mValue)) {
263 if ( egl.eglGetConfigAttrib(display, config, attribute, value)) {
  /frameworks/native/opengl/tests/gldual/src/com/android/gldual/
GLDualGL2View.java 174 if (egl.eglGetConfigAttrib(display, config, attribute, mValue)) {
266 if ( egl.eglGetConfigAttrib(display, config, attribute, value)) {
  /frameworks/base/core/java/android/view/
HardwareRenderer.java     [all...]

Completed in 127 milliseconds

1 2 3 4