Covellite++  Version: 2.3.0 Revision: ??? Platform: x64 Build: 23:13 04.01.2025
Кроссплатформенный фреймворк для разработки приложений на С++
Загрузка...
Поиск...
Не найдено
display.hpp
1
2#pragma once
3
4namespace covellite
5{
6
7namespace egl
8{
9
10class Surface;
11class Context;
12
31class Display final
32{
33private:
34 EGLDisplay m_Display;
35
36public:
37 Display(void);
38 ~Display(void) noexcept;
39
40private:
41 friend class Config;
42 friend class Surface;
43 friend class Context;
44};
45
46} // namespace egl
47
48} // namespace covellite
Класс входит в проект Covellite.Egl Класс-обертка для EGLConfig.
Definition config.hpp:32
Класс входит в проект Covellite.Egl Класс-обетка для eglContext.
Definition context.hpp:35
Класс входит в проект Covellite.Egl Класс-обетка для EGLDisplay.
Definition display.hpp:32
Класс входит в проект Covellite.Egl Класс-обертка для EGLSurface.
Definition surface.hpp:33