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

1 2 3 4 5 6 7 8 910

  /device/generic/goldfish-opengl/system/egl/
egl_ftable.h 22 {"eglInitialize", (void *)eglInitialize},
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
egl_ftable.h 22 {"eglInitialize", (void *)eglInitialize},
egl_dispatch.h 24 eglInitialize_t eglInitialize;
69 eglInitialize_t set_eglInitialize(eglInitialize_t f) { eglInitialize_t retval = eglInitialize; eglInitialize = f; return retval;}
  /external/deqp/framework/egl/wrapper/
eglwStaticLibrary14.inl 25 { "eglInitialize", (deFunctionPtr)eglInitialize },
eglwStaticLibrary15.inl 34 { "eglInitialize", (deFunctionPtr)eglInitialize },
  /external/mesa3d/src/egl/
egl-symbols-check 33 eglInitialize
  /frameworks/native/opengl/tools/glgen/specs/egl/
checks.spec 0 eglInitialize nullAllowed major nullAllowed minor check major 1 check minor 1
EGL14.spec 3 EGLBoolean eglInitialize ( EGLDisplay dpy, EGLint *major, EGLint *minor )
  /external/skia/tools/fiddle/
egl_context.cpp 40 if (EGL_TRUE != eglInitialize(eglDpy, &major, &minor)) {
  /cts/tests/tests/graphics/src/android/graphics/cts/
SyncTest.java 79 if (!EGL14.eglInitialize(mEglDisplay, major, 0, minor, 0)) {
80 throw new RuntimeException("error in eglInitialize");
RenderTarget.java 38 import static android.opengl.EGL14.eglInitialize;
146 if (!eglInitialize(display, version, 0, version, 1)) {
147 throw new IllegalStateException("eglInitialize failed");
  /cts/tests/tests/opengl/src/android/opengl/cts/
EglSurfacesTest.java 49 if (!egl.eglInitialize(display, version)) {
50 throw new RuntimeException("eglInitialize failed");
EglConfigTest.java 101 if (egl.eglInitialize(display, null)) {
Egl14Utils.java 69 if (!EGL14.eglInitialize(eglDisplay, major, 0, minor, 0)) {
70 throw new IllegalStateException("error in eglInitialize");
  /frameworks/native/opengl/tests/configdump/
configdump.cpp 74 eglInitialize(dpy, 0, 0);
  /cts/tests/tests/effect/src/android/effect/cts/
GLEnv.java 43 egl.eglInitialize(mEGLDisplay, version);
  /cts/tests/tests/hardware/src/android/hardware/cts/
Egl14Utils.java 47 if (!EGL14.eglInitialize(eglDisplay, major, 0, minor, 0)) {
48 throw new IllegalStateException("error in eglInitialize");
  /external/autotest/client/deps/glbench/src/
egl_stuff.cc 63 eglInitialize(display_, NULL, NULL);
  /external/skia/tools/viewer/sk_app/android/
GLWindowContext_android.cpp 68 eglInitialize(fDisplay, &majorVersion, &minorVersion);
  /frameworks/native/opengl/tests/gl_perf/
gl2_perf.cpp 82 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
83 checkEglError("eglInitialize", returnValue);
85 printf("eglInitialize failed\n");
  /frameworks/native/opengl/tests/linetex/
linetex.cpp 51 eglInitialize(dpy, &majorVersion, &minorVersion);
  /frameworks/native/opengl/tests/swapinterval/
swapinterval.cpp 52 eglInitialize(dpy, &majorVersion, &minorVersion);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
CtsMediaOutputSurface.java 132 if (!EGL14.eglInitialize(mEGLDisplay, version, 0, version, 1)) {
  /cts/tests/tests/media/src/android/media/cts/
InputSurface.java 71 if (!EGL14.eglInitialize(mEGLDisplay, version, 0, version, 1)) {
OutputSurface.java 128 if (!EGL14.eglInitialize(mEGLDisplay, version, 0, version, 1)) {

Completed in 238 milliseconds

1 2 3 4 5 6 7 8 910