Home
last modified time | relevance | path

Searched refs:EglSurface (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/lite/delegates/gpu/gl/
Degl_surface.h33 class EglSurface {
36 EglSurface() : surface_(EGL_NO_SURFACE), display_(EGL_NO_DISPLAY) {} in EglSurface() function
38 EglSurface(EGLSurface surface, EGLDisplay display) in EglSurface() function
42 EglSurface(EglSurface&& other);
43 EglSurface& operator=(EglSurface&& other);
44 EglSurface(const EglSurface&) = delete;
45 EglSurface& operator=(const EglSurface&) = delete;
47 ~EglSurface() { Invalidate(); } in ~EglSurface()
61 EglSurface* egl_surface);
Degl_surface.cc26 EglSurface::EglSurface(EglSurface&& other) in EglSurface() function in tflite::gpu::gl::EglSurface
31 EglSurface& EglSurface::operator=(EglSurface&& other) { in operator =()
40 void EglSurface::Invalidate() { in Invalidate()
49 EglSurface* egl_surface) { in CreatePbufferRGBSurface()
66 *egl_surface = EglSurface(surface, display); in CreatePbufferRGBSurface()
Degl_environment.h56 EglSurface surface_draw_;
57 EglSurface surface_read_;
/external/libkmsxx/kmscube/
Dcube-egl.cpp98 EglSurface::EglSurface(const EglState& egl, void* native_window) in EglSurface() function in EglSurface
105 EglSurface::~EglSurface() in ~EglSurface()
110 void EglSurface::make_current() in make_current()
116 void EglSurface::swap_buffers() in swap_buffers()
Dcube-egl.h21 class EglSurface
24 EglSurface(const EglState& egl, void* native_window);
25 ~EglSurface();
Dcube-null.cpp14 EglSurface surface(egl, 0); in main_null()
Dcube-wl.cpp88 EglSurface surface(egl, window.egl_window); in main_wl()
Dcube-x11.cpp16 EglSurface surface(egl, (void*)(uintptr_t)window); in main_loop()