@@ -34,8 +34,8 @@ constexpr struct wl_callback_listener frame_listener_egl = {
34
34
};
35
35
36
36
WaylandEglWindow::WaylandEglWindow (struct wl_compositor *compositor, struct xdg_wm_base *xdg_base,
37
- EGLUtil<struct wl_display , struct wl_egl_window >& egl, std::unique_ptr<Image> new_image,
38
- std::shared_ptr<WaylandConfig> new_config, struct XdgStructAgg & xdg_agg):
37
+ const EGLUtil<struct wl_display , struct wl_egl_window >* egl, std::unique_ptr<Image> new_image,
38
+ std::shared_ptr<WaylandConfig> new_config, struct XdgStructAgg * xdg_agg):
39
39
compositor(compositor),
40
40
xdg_base(xdg_base),
41
41
surface(wl_compositor_create_surface(compositor)),
@@ -62,38 +62,38 @@ WaylandEglWindow::~WaylandEglWindow()
62
62
63
63
void WaylandEglWindow::opengl_cleanup ()
64
64
{
65
- egl. run_contained (egl_context, egl_surface, [this ] {
65
+ egl-> run_contained (egl_context, egl_surface, [this ] {
66
66
glDeleteTextures (1 , &texture);
67
67
glDeleteFramebuffers (1 , &fbo);
68
68
});
69
- eglDestroySurface (egl. display , egl_surface);
70
- eglDestroyContext (egl. display , egl_context);
69
+ eglDestroySurface (egl-> display , egl_surface);
70
+ eglDestroyContext (egl-> display , egl_context);
71
71
}
72
72
73
73
void WaylandEglWindow::finish_init ()
74
74
{
75
75
auto xdg = std::make_unique<XdgStruct>();
76
76
xdg->ptr = weak_from_this ();
77
77
this_ptr = xdg.get ();
78
- xdg_agg. ptrs .push_back (std::move (xdg));
78
+ xdg_agg-> ptrs .push_back (std::move (xdg));
79
79
setup_listeners ();
80
80
visible = true ;
81
81
}
82
82
83
83
void WaylandEglWindow::opengl_setup ()
84
84
{
85
- egl_surface = egl. create_surface (egl_window);
85
+ egl_surface = egl-> create_surface (egl_window);
86
86
if (egl_surface == EGL_NO_SURFACE) {
87
87
throw std::runtime_error (" " );
88
88
}
89
89
90
- egl_context = egl. create_context (egl_surface);
90
+ egl_context = egl-> create_context (egl_surface);
91
91
if (egl_context == EGL_NO_CONTEXT) {
92
92
throw std::runtime_error (" " );
93
93
}
94
94
95
- egl. run_contained (egl_surface, egl_context, [this ] {
96
- eglSwapInterval (egl. display , 0 );
95
+ egl-> run_contained (egl_surface, egl_context, [this ] {
96
+ eglSwapInterval (egl-> display , 0 );
97
97
glGenFramebuffers (1 , &fbo);
98
98
glGenTextures (1 , &texture);
99
99
});
@@ -151,15 +151,15 @@ void WaylandEglWindow::draw()
151
151
void WaylandEglWindow::load_framebuffer ()
152
152
{
153
153
std::scoped_lock lock {egl_mutex};
154
- egl. run_contained (egl_surface, egl_context, [this ] {
155
- egl. get_texture_from_image (*image, texture);
154
+ egl-> run_contained (egl_surface, egl_context, [this ] {
155
+ egl-> get_texture_from_image (*image, texture);
156
156
glBindFramebuffer (GL_READ_FRAMEBUFFER, fbo);
157
157
glFramebufferTexture2D (GL_READ_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
158
158
GL_TEXTURE_2D, texture, 0 );
159
159
glBlitFramebuffer (0 , 0 , image->width (), image->height (), 0 , 0 , image->width (), image->height (),
160
160
GL_COLOR_BUFFER_BIT, GL_NEAREST);
161
161
162
- eglSwapBuffers (egl. display , egl_surface);
162
+ eglSwapBuffers (egl-> display , egl_surface);
163
163
});
164
164
}
165
165
0 commit comments