Home | History | Annotate | Download | only in egl

Lines Matching defs:eglw

29 namespace eglw
40 UniqueDisplay (const eglw::Library& egl, eglw::EGLDisplay display);
43 eglw::EGLDisplay operator* (void) const { return m_display; }
47 const eglw::Library& m_egl;
48 eglw::EGLDisplay m_display;
58 UniqueSurface (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLSurface surface);
61 eglw::EGLSurface operator* (void) const { return m_surface; }
65 const eglw::Library& m_egl;
66 eglw::EGLDisplay m_display;
67 eglw::EGLSurface m_surface;
77 UniqueContext (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLContext context);
80 eglw::EGLContext operator* (void) const { return m_context; }
84 const eglw::Library& m_egl;
85 eglw::EGLDisplay m_display;
86 eglw::EGLContext m_context;
96 ScopedCurrentContext (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLSurface draw, eglw::EGLSurface read, eglw::EGLContext context);
100 const eglw::Library& m_egl;
101 eglw::EGLDisplay m_display;
107 UniqueImage (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLImage image);
110 eglw::EGLImage operator* (void) const { return m_image; }
114 const eglw::Library& m_egl;
115 eglw::EGLDisplay m_display;
116 eglw::EGLImage m_image;