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

1 2

  /cts/tests/tests/effect/src/android/effect/cts/
GLEnv.java 54 egl.eglChooseConfig(mEGLDisplay, configSpec, configs, 1, num_config);
55 checkForEGLErrors("eglChooseConfig");
  /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)
  /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);
  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
libEGL.cpp 250 EGLBoolean __stdcall eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config)
  /frameworks/base/opengl/java/android/opengl/
EGLLogWrapper.java 47 public boolean eglChooseConfig(EGLDisplay display, int[] attrib_list,
49 begin("eglChooseConfig");
55 boolean result = mEgl10.eglChooseConfig(display, attrib_list, configs,
EGL14.java 197 // C function EGLBoolean eglChooseConfig ( EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config )
199 public static native boolean eglChooseConfig(
  /frameworks/base/opengl/java/com/google/android/gles_jni/
EGLImpl.java 36 public native boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, EGLConfig[] configs, int config_size, int[] 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);
  /sdk/emulator/opengl/host/libs/libOpenglRender/
EGLDispatch.h 28 eglChooseConfig_t eglChooseConfig;
  /sdk/emulator/opengl/tests/EGL_host_wrapper/
egl.cpp 94 EGLBoolean eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config)
96 return getDispatch()->eglChooseConfig(dpy, attrib_list, configs, config_size, num_config);
egl_dispatch.h 28 eglChooseConfig_t eglChooseConfig;
73 eglChooseConfig_t set_eglChooseConfig(eglChooseConfig_t f) { eglChooseConfig_t retval = eglChooseConfig; eglChooseConfig = f; return retval;}
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
MosaicRendererSurfaceView.java 154 egl.eglChooseConfig(display, CONFIG_ATTRIBUTES, null, 0, numConfig);
165 egl.eglChooseConfig(display, CONFIG_ATTRIBUTES, configs, numConfigs, numConfig);
  /development/tools/emulator/opengl/tests/gles_android_wrapper/
egl.cpp 324 EGLBoolean eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config)
329 res = getDispatch()->eglChooseConfig(dpy,
334 ALOGD("eglChooseConfig: %d configs found\n", *num_config);
344 res = getDispatch()->eglChooseConfig(dpy, attrib_list, configs, config_size, num_config);
egl_dispatch.h 28 eglChooseConfig_t eglChooseConfig;
73 eglChooseConfig_t set_eglChooseConfig(eglChooseConfig_t f) { eglChooseConfig_t retval = eglChooseConfig; eglChooseConfig = f; return retval;}
  /frameworks/base/opengl/java/javax/microedition/khronos/egl/
EGL10.java 97 boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, EGLConfig[] configs, int config_size, int[] num_config);
  /frameworks/native/opengl/libs/EGL/
eglApi.cpp 189 EGLBoolean eglChooseConfig( EGLDisplay dpy, const EGLint *attrib_list,
248 EGLBoolean resAA = cnx->egl.eglChooseConfig(
260 res = cnx->egl.eglChooseConfig(
    [all...]
  /development/tools/emulator/opengl/system/egl/
egl.cpp 574 EGLBoolean eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config)
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglImp.cpp 267 EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig(EGLDisplay display, const EGLint *attrib_list,
    [all...]
  /frameworks/base/core/java/android/view/
HardwareRenderer.java 881 sEgl.eglChooseConfig(sEglDisplay, configSpec, null, 0, configsCount);
884 sEgl.eglChooseConfig(sEglDisplay, configSpec, debugConfigs,
892 if (!sEgl.eglChooseConfig(sEglDisplay, configSpec, configs, 1, configsCount)) {
893 throw new IllegalArgumentException("eglChooseConfig failed " +
    [all...]
  /frameworks/native/opengl/libagl/
egl.cpp     [all...]
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace.pb.cpp 978 const GLMessage_Function GLMessage::eglChooseConfig;
    [all...]
gltrace.pb.h     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
GLProtoBuf.java 471 eglChooseConfig(441, 2004),
    [all...]

Completed in 1998 milliseconds

1 2