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

1 2 3 4 5 6 7 8

  /device/generic/goldfish/opengl/system/egl/
egl_ftable.h 28 {"eglCreateWindowSurface", (void *)eglCreateWindowSurface},
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
egl_ftable.h 28 {"eglCreateWindowSurface", (void *)eglCreateWindowSurface},
egl_dispatch.h 30 eglCreateWindowSurface_t eglCreateWindowSurface;
75 eglCreateWindowSurface_t set_eglCreateWindowSurface(eglCreateWindowSurface_t f) { eglCreateWindowSurface_t retval = eglCreateWindowSurface; eglCreateWindowSurface = f; return retval;}
  /frameworks/native/libs/gui/tests/
SurfaceTextureGLToGL.h 38 mProducerEglSurface = eglCreateWindowSurface(mEglDisplay, mGlConfig,
  /sdk/emulator/opengl/tests/EGL_host_wrapper/
egl_ftable.h 28 {"eglCreateWindowSurface", (void *)eglCreateWindowSurface},
egl_dispatch.h 30 eglCreateWindowSurface_t eglCreateWindowSurface;
75 eglCreateWindowSurface_t set_eglCreateWindowSurface(eglCreateWindowSurface_t f) { eglCreateWindowSurface_t retval = eglCreateWindowSurface; eglCreateWindowSurface = f; return retval;}
  /frameworks/native/opengl/tools/glgen/specs/egl/
checks.spec 5 //STUB function: //eglCreateWindowSurface sentinel attrib_list EGL_NONE
EGL14.spec 9 EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list )
  /frameworks/native/opengl/tools/glgen/stubs/egl/
eglCreateWindowSurface.java 1 // C function EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list )
19 public static EGLSurface eglCreateWindowSurface(EGLDisplay dpy,
44 "eglCreateWindowSurface() can only be called with an instance of " +
eglCreateWindowSurface.cpp 1 /* EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) */
60 _returnValue = eglCreateWindowSurface(
78 /* EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) */
142 _returnValue = eglCreateWindowSurface(
  /sdk/emulator/opengl/host/libs/libOpenglRender/
EGLDispatch.h 30 eglCreateWindowSurface_t eglCreateWindowSurface;
  /development/ndk/sources/android/ndk_helper/
GLContext.cpp 133 surface_ = eglCreateWindowSurface( display_, config_, window_, NULL );
225 surface_ = eglCreateWindowSurface( display_, config_, window_, NULL );
  /external/chromium_org/third_party/angle/util/
EGLWindow.cpp 136 mSurface = eglCreateWindowSurface(mDisplay, mConfig, osWindow->getNativeWindow(), surfaceAttributes);
140 mSurface = eglCreateWindowSurface(mDisplay, mConfig, NULL, NULL);
  /sdk/emulator/opengl/tests/ut_renderer/
RendererSurface.cpp 91 EGLSurface eglSurface = eglCreateWindowSurface(eglDisplay,
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
importgl.h 67 FNDEF(EGLSurface, eglCreateWindowSurface, (EGLDisplay dpy, EGLConfig config, NativeWindowType window, const EGLint *attrib_list));
119 #define eglCreateWindowSurface FNPTR(eglCreateWindowSurface)
importgl.c 110 IMPORT_FUNC(eglCreateWindowSurface);
  /frameworks/base/media/mca/filterfw/jni/
jni_gl_environment.cpp 173 EGLSurface egl_surface = eglCreateWindowSurface(gl_env->display(),
178 if (GLEnv::CheckEGLError("eglCreateWindowSurface")) {
214 // set during the eglCreateWindowSurface
242 EGLSurface egl_surface = eglCreateWindowSurface(gl_env->display(),
247 if (GLEnv::CheckEGLError("eglCreateWindowSurface")) {
308 // eglCreateWindowSurface
341 EGLSurface egl_surface = eglCreateWindowSurface(gl_env->display(),
346 if (GLEnv::CheckEGLError("eglCreateWindowSurface")) {
  /cts/tests/tests/nativeopengl/standalone/jni/tests/
EGLCreateContext_test.cpp 73 mEglWindowSurface = eglCreateWindowSurface(mEglDisplay, mEglConfig,
GLTest_test.cpp 70 mEglSurface = eglCreateWindowSurface(mEglDisplay, mGlConfig,
  /frameworks/native/opengl/tests/gl_perf/
gl2_perf.cpp 99 surface = eglCreateWindowSurface(dpy, myConfig, window, NULL);
100 checkEglError("eglCreateWindowSurface");
  /frameworks/native/opengl/tests/linetex/
linetex.cpp 60 surface = eglCreateWindowSurface(dpy, config, window, NULL);
  /frameworks/native/opengl/tests/swapinterval/
swapinterval.cpp 71 surface = eglCreateWindowSurface(dpy, config, window, NULL);
  /external/deqp/framework/egl/
egluApiPrototypes.inl 13 EGLSurface eglCreateWindowSurface (EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint* attrib_list);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
RenderTarget.java 124 eglSurf = mEgl.eglCreateWindowSurface(mDisplay, eglConfig, surfaceHolder, null);
128 checkEglError(mEgl, "eglCreateWindowSurface");
143 eglSurf = mEgl.eglCreateWindowSurface(mDisplay, eglConfig, surfaceTexture, null);
147 checkEglError(mEgl, "eglCreateWindowSurface");
162 eglSurf = mEgl.eglCreateWindowSurface(mDisplay, eglConfig, surface, null);
166 checkEglError(mEgl, "eglCreateWindowSurface");
  /cts/tests/tests/media/src/android/media/cts/
InputSurface.java 106 mEGLSurface = EGL14.eglCreateWindowSurface(mEGLDisplay, configs[0], mSurface,
108 checkEglError("eglCreateWindowSurface");

Completed in 6201 milliseconds

1 2 3 4 5 6 7 8