Searched refs:egl_surface_t (Results 1 – 4 of 4) sorted by relevance
/frameworks/native/opengl/libs/EGL/ |
D | egl_object.h | 126 class egl_surface_t : public egl_object_t { 128 ~egl_surface_t(); 130 typedef egl_object_t::LocalRef<egl_surface_t, EGLSurface> Ref; 132 egl_surface_t(egl_display_t* dpy, EGLConfig config, 166 typedef egl_surface_t::Ref SurfaceRef; 177 egl_surface_t* get_surface(EGLSurface surface) { in get_surface() 178 return egl_to_native_cast<egl_surface_t>(surface); in get_surface()
|
D | egl_object.cpp | 64 egl_surface_t::egl_surface_t(egl_display_t* dpy, EGLConfig config, in egl_surface_t() function in android::egl_surface_t 74 egl_surface_t::~egl_surface_t() { in ~egl_surface_t()
|
D | eglApi.cpp | 512 egl_surface_t* s = new egl_surface_t(dp.get(), config, window, in eglCreateWindowSurface() 536 egl_surface_t* s = new egl_surface_t(dp.get(), config, NULL, in eglCreatePixmapSurface() 555 egl_surface_t* s = new egl_surface_t(dp.get(), config, NULL, in eglCreatePbufferSurface() 574 egl_surface_t * const s = get_surface(surface); in eglDestroySurface() 594 egl_surface_t const * const s = get_surface(surface); in eglQuerySurface() 718 egl_surface_t const * d = NULL; in eglMakeCurrent() 719 egl_surface_t const * r = NULL; in eglMakeCurrent() 1086 egl_surface_t const * const s = get_surface(draw); in eglSwapBuffers() 1120 egl_surface_t const * const s = get_surface(surface); in eglCopyBuffers() 1180 egl_surface_t const * const s = get_surface(surface); in eglSurfaceAttrib() [all …]
|
/frameworks/native/opengl/libagl/ |
D | egl.cpp | 139 struct egl_surface_t struct 152 egl_surface_t(EGLDisplay dpy, EGLConfig config, int32_t depthFormat); 153 virtual ~egl_surface_t(); 174 egl_surface_t::egl_surface_t(EGLDisplay dpy, in egl_surface_t() function in android::egl_surface_t 183 egl_surface_t::~egl_surface_t() in ~egl_surface_t() 188 bool egl_surface_t::isValid() const { in isValid() 193 EGLBoolean egl_surface_t::swapBuffers() { in swapBuffers() 196 EGLint egl_surface_t::getHorizontalResolution() const { in getHorizontalResolution() 199 EGLint egl_surface_t::getVerticalResolution() const { in getVerticalResolution() 202 EGLint egl_surface_t::getRefreshRate() const { in getRefreshRate() [all …]
|