HomeSort by relevance Sort by last modified time
    Searched refs:EglSurface (Results 1 - 8 of 8) sorted by null

  /external/libkmsxx/kmscube/
cube-egl.h 21 class EglSurface
24 EglSurface(const EglState& egl, void *native_window);
25 ~EglSurface();
33 EGLSurface esurface;
cube-egl.cpp 99 EglSurface::EglSurface(const EglState &egl, void *native_window)
106 EglSurface::~EglSurface()
111 void EglSurface::make_current()
117 void EglSurface::swap_buffers()
cube-null.cpp 14 EglSurface surface(egl, 0);
cube-wl.cpp 90 EglSurface surface(egl, window.egl_window);
cube-x11.cpp 16 EglSurface surface(egl, (void*)(uintptr_t)window);
  /device/generic/opengl-transport/host/libs/virglrenderer/
EglSurface.h 26 struct EglSurface {
27 static std::map<uint32_t, EglSurface*> map;
30 EglSurface(EGLConfig config_, uint32_t ctx_, uint32_t width_, uint32_t height_)
35 ~EglSurface() {
39 EglSurface* bind(uint32_t ctx_, bool read_) {
40 for (auto const& it : EglSurface::map) {
41 EglSurface* sur = it.second;
77 EGLSurface surface = EGL_NO_SURFACE;
RenderControl.cpp 22 #include "EglSurface.h"
445 EglSurface* surface =
446 new (std::nothrow) EglSurface(config->config, rc->ctx->handle, width, height);
454 std::map<uint32_t, EglSurface*>::iterator it;
455 it = EglSurface::map.find(surface_);
456 if (it == EglSurface::map.end())
459 EglSurface* surface = it->second;
487 std::map<uint32_t, EglSurface*>::iterator surface_it;
488 surface_it = EglSurface::map.find(windowSurface);
489 if (surface_it == EglSurface::map.end()
    [all...]
AVDVirglRenderer.cpp 57 #include "EglSurface.h"
98 std::map<uint32_t, EglSurface*> EglSurface::map;
107 uint32_t EglSurface::nextId = 1U;
117 static EGLSurface g_ctx0_surface;
652 EGLSurface old_read_surface, old_draw_surface;
    [all...]

Completed in 1361 milliseconds