Skip to content

Commit 9e680f7

Browse files
committed
follow core guidelines and be more const correct
1 parent 27a4707 commit 9e680f7

File tree

11 files changed

+51
-53
lines changed

11 files changed

+51
-53
lines changed

include/util/egl.hpp

+6-8
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,12 @@ class EGLUtil
3535
EGLUtil(EGLenum platform, T* native_display, const EGLAttrib* attrib = nullptr);
3636
~EGLUtil();
3737

38-
void get_texture_from_image(const Image& image, GLuint texture);
39-
40-
auto create_surface(V* native_window) -> EGLSurface;
41-
auto create_context(EGLSurface surface) -> EGLContext;
42-
43-
void run_contained(EGLSurface surface, EGLContext context, const std::function<void()>& func);
44-
void make_current(EGLSurface surface, EGLContext context);
45-
void restore();
38+
void get_texture_from_image(const Image& image, GLuint texture) const;
39+
void run_contained(EGLSurface surface, EGLContext context, const std::function<void()>& func) const;
40+
void make_current(EGLSurface surface, EGLContext context) const;
41+
void restore() const;
42+
[[nodiscard]] auto create_surface(V* native_window) const -> EGLSurface;
43+
[[nodiscard]] auto create_context(EGLSurface surface) const -> EGLContext;
4644

4745
EGLDisplay display;
4846

src/canvas/wayland/config/wayfire.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class WayfireSocket : public WaylandConfig
3636
private:
3737
[[nodiscard]] auto request(std::string_view method, const nlohmann::json& data = {}) const -> nlohmann::json;
3838

39-
const UnixSocket socket;
39+
UnixSocket socket;
4040
std::shared_ptr<spdlog::logger> logger;
4141
};
4242

src/canvas/wayland/wayland.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -147,15 +147,15 @@ void WaylandCanvas::add_image(const std::string& identifier, std::unique_ptr<Ima
147147
#ifdef ENABLE_OPENGL
148148
if (egl_available) {
149149
try {
150-
window = std::make_shared<WaylandEglWindow>(compositor, xdg_base, *egl, std::move(new_image), config, xdg_agg);
150+
window = std::make_shared<WaylandEglWindow>(compositor, xdg_base, egl.get(), std::move(new_image), config, &xdg_agg);
151151
} catch (const std::runtime_error& err) {
152152
return;
153153
}
154154
} else {
155-
window = std::make_shared<WaylandShmWindow>(compositor, wl_shm, xdg_base, std::move(new_image), config, xdg_agg);
155+
window = std::make_shared<WaylandShmWindow>(compositor, wl_shm, xdg_base, std::move(new_image), config, &xdg_agg);
156156
}
157157
#else
158-
window = std::make_shared<WaylandShmWindow>(compositor, wl_shm, xdg_base, std::move(new_image), config, xdg_agg);
158+
window = std::make_shared<WaylandShmWindow>(compositor, wl_shm, xdg_base, std::move(new_image), config, &xdg_agg);
159159
#endif
160160
window->finish_init();
161161
windows.insert_or_assign(identifier, std::move(window));

src/canvas/wayland/window/waylandegl.cpp

+13-13
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ constexpr struct wl_callback_listener frame_listener_egl = {
3434
};
3535

3636
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):
3939
compositor(compositor),
4040
xdg_base(xdg_base),
4141
surface(wl_compositor_create_surface(compositor)),
@@ -62,38 +62,38 @@ WaylandEglWindow::~WaylandEglWindow()
6262

6363
void WaylandEglWindow::opengl_cleanup()
6464
{
65-
egl.run_contained(egl_context, egl_surface, [this] {
65+
egl->run_contained(egl_context, egl_surface, [this] {
6666
glDeleteTextures(1, &texture);
6767
glDeleteFramebuffers(1, &fbo);
6868
});
69-
eglDestroySurface(egl.display, egl_surface);
70-
eglDestroyContext(egl.display, egl_context);
69+
eglDestroySurface(egl->display, egl_surface);
70+
eglDestroyContext(egl->display, egl_context);
7171
}
7272

7373
void WaylandEglWindow::finish_init()
7474
{
7575
auto xdg = std::make_unique<XdgStruct>();
7676
xdg->ptr = weak_from_this();
7777
this_ptr = xdg.get();
78-
xdg_agg.ptrs.push_back(std::move(xdg));
78+
xdg_agg->ptrs.push_back(std::move(xdg));
7979
setup_listeners();
8080
visible = true;
8181
}
8282

8383
void WaylandEglWindow::opengl_setup()
8484
{
85-
egl_surface = egl.create_surface(egl_window);
85+
egl_surface = egl->create_surface(egl_window);
8686
if (egl_surface == EGL_NO_SURFACE) {
8787
throw std::runtime_error("");
8888
}
8989

90-
egl_context = egl.create_context(egl_surface);
90+
egl_context = egl->create_context(egl_surface);
9191
if (egl_context == EGL_NO_CONTEXT) {
9292
throw std::runtime_error("");
9393
}
9494

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);
9797
glGenFramebuffers(1, &fbo);
9898
glGenTextures(1, &texture);
9999
});
@@ -151,15 +151,15 @@ void WaylandEglWindow::draw()
151151
void WaylandEglWindow::load_framebuffer()
152152
{
153153
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);
156156
glBindFramebuffer(GL_READ_FRAMEBUFFER, fbo);
157157
glFramebufferTexture2D(GL_READ_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
158158
GL_TEXTURE_2D, texture, 0);
159159
glBlitFramebuffer(0, 0, image->width(), image->height(), 0, 0, image->width(), image->height(),
160160
GL_COLOR_BUFFER_BIT, GL_NEAREST);
161161

162-
eglSwapBuffers(egl.display, egl_surface);
162+
eglSwapBuffers(egl->display, egl_surface);
163163
});
164164
}
165165

src/canvas/wayland/window/waylandegl.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ class WaylandEglWindow :
3535
{
3636
public:
3737
WaylandEglWindow(struct wl_compositor *compositor, struct xdg_wm_base *xdg_base,
38-
EGLUtil<struct wl_display, struct wl_egl_window>& egl, std::unique_ptr<Image> new_image,
39-
std::shared_ptr<WaylandConfig> new_config, struct XdgStructAgg& xdg_agg);
38+
const EGLUtil<struct wl_display, struct wl_egl_window>* egl, std::unique_ptr<Image> new_image,
39+
std::shared_ptr<WaylandConfig> new_config, struct XdgStructAgg* xdg_agg);
4040
~WaylandEglWindow() override;
4141
static void xdg_surface_configure(void *data, struct xdg_surface *xdg_surface, uint32_t serial);
4242
static void wl_surface_frame_done(void *data, struct wl_callback *callback, uint32_t time);
@@ -64,7 +64,7 @@ class WaylandEglWindow :
6464
EGLContext egl_context;
6565

6666
struct wl_egl_window *egl_window = nullptr;
67-
EGLUtil<struct wl_display, struct wl_egl_window>& egl;
67+
const EGLUtil<struct wl_display, struct wl_egl_window>* egl;
6868

6969
GLuint texture;
7070
GLuint fbo;
@@ -74,7 +74,7 @@ class WaylandEglWindow :
7474

7575
std::string appid;
7676
void* this_ptr;
77-
struct XdgStructAgg& xdg_agg;
77+
struct XdgStructAgg* xdg_agg;
7878
bool visible = false;
7979

8080
void move_window();

src/canvas/wayland/window/waylandshm.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ constexpr struct wl_callback_listener frame_listener = {
3636

3737
WaylandShmWindow::WaylandShmWindow(struct wl_compositor *compositor,
3838
struct wl_shm *wl_shm, struct xdg_wm_base *xdg_base, std::unique_ptr<Image> new_image,
39-
std::shared_ptr<WaylandConfig> new_config, struct XdgStructAgg& xdg_agg):
39+
std::shared_ptr<WaylandConfig> new_config, struct XdgStructAgg* xdg_agg):
4040
compositor(compositor),
4141
xdg_base(xdg_base),
4242
surface(wl_compositor_create_surface(compositor)),
@@ -57,7 +57,7 @@ void WaylandShmWindow::finish_init()
5757
auto xdg = std::make_unique<XdgStruct>();
5858
xdg->ptr = weak_from_this();
5959
this_ptr = xdg.get();
60-
xdg_agg.ptrs.push_back(std::move(xdg));
60+
xdg_agg->ptrs.push_back(std::move(xdg));
6161
setup_listeners();
6262
visible = true;
6363
}

src/canvas/wayland/window/waylandshm.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class WaylandShmWindow :
3636
public:
3737
WaylandShmWindow(struct wl_compositor *compositor, struct wl_shm *wl_shm,
3838
struct xdg_wm_base *xdg_base, std::unique_ptr<Image> new_image,
39-
std::shared_ptr<WaylandConfig> new_config, struct XdgStructAgg& xdg_agg);
39+
std::shared_ptr<WaylandConfig> new_config, struct XdgStructAgg* xdg_agg);
4040
~WaylandShmWindow() override;
4141
static void xdg_surface_configure(void *data, struct xdg_surface *xdg_surface, uint32_t serial);
4242
static void wl_surface_frame_done(void *data, struct wl_callback *callback, uint32_t time);
@@ -64,7 +64,7 @@ class WaylandShmWindow :
6464
std::string appid;
6565
std::shared_ptr<WaylandConfig> config;
6666

67-
XdgStructAgg& xdg_agg;
67+
struct XdgStructAgg* xdg_agg;
6868
void* this_ptr;
6969

7070
void move_window();

src/canvas/x11/window/x11egl.cpp

+11-11
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include <gsl/gsl>
2626

2727
X11EGLWindow::X11EGLWindow(xcb_connection_t* connection, xcb_screen_t* screen,
28-
xcb_window_t windowid, xcb_window_t parentid, EGLUtil<xcb_connection_t, xcb_window_t>& egl,
28+
xcb_window_t windowid, xcb_window_t parentid, const EGLUtil<xcb_connection_t, xcb_window_t>* egl,
2929
std::shared_ptr<Image> new_image):
3030
connection(connection),
3131
screen(screen),
@@ -41,12 +41,12 @@ egl(egl)
4141

4242
X11EGLWindow::~X11EGLWindow()
4343
{
44-
egl.run_contained(egl_surface, egl_context, [this] {
44+
egl->run_contained(egl_surface, egl_context, [this] {
4545
glDeleteTextures(1, &texture);
4646
glDeleteFramebuffers(1, &fbo);
4747
});
48-
eglDestroySurface(egl.display, egl_surface);
49-
eglDestroyContext(egl.display, egl_context);
48+
eglDestroySurface(egl->display, egl_surface);
49+
eglDestroyContext(egl->display, egl_context);
5050

5151
xcb_destroy_window(connection, windowid);
5252
xcb_flush(connection);
@@ -79,17 +79,17 @@ void X11EGLWindow::create()
7979

8080
void X11EGLWindow::opengl_setup()
8181
{
82-
egl_surface = egl.create_surface(&windowid);
82+
egl_surface = egl->create_surface(&windowid);
8383
if (egl_surface == EGL_NO_SURFACE) {
8484
throw std::runtime_error("");
8585
}
8686

87-
egl_context = egl.create_context(egl_surface);
87+
egl_context = egl->create_context(egl_surface);
8888
if (egl_context == EGL_NO_CONTEXT) {
8989
throw std::runtime_error("");
9090
}
9191

92-
egl.run_contained(egl_surface, egl_context, [this] {
92+
egl->run_contained(egl_surface, egl_context, [this] {
9393
glGenFramebuffers(1, &fbo);
9494
glGenTextures(1, &texture);
9595
});
@@ -98,18 +98,18 @@ void X11EGLWindow::opengl_setup()
9898
void X11EGLWindow::draw()
9999
{
100100
const std::scoped_lock lock {egl_mutex};
101-
egl.run_contained(egl_surface, egl_context, [this] {
101+
egl->run_contained(egl_surface, egl_context, [this] {
102102
glBlitFramebuffer(0, 0, image->width(), image->height(), 0, 0, image->width(), image->height(),
103103
GL_COLOR_BUFFER_BIT, GL_NEAREST);
104-
eglSwapBuffers(egl.display, egl_surface);
104+
eglSwapBuffers(egl->display, egl_surface);
105105
});
106106
}
107107

108108
void X11EGLWindow::generate_frame()
109109
{
110110
const std::scoped_lock lock {egl_mutex};
111-
egl.run_contained(egl_surface, egl_context, [this] {
112-
egl.get_texture_from_image(*image, texture);
111+
egl->run_contained(egl_surface, egl_context, [this] {
112+
egl->get_texture_from_image(*image, texture);
113113
glBindFramebuffer(GL_READ_FRAMEBUFFER, fbo);
114114
glFramebufferTexture2D(GL_READ_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
115115
GL_TEXTURE_2D, texture, 0);

src/canvas/x11/window/x11egl.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class X11EGLWindow : public Window
3232
{
3333
public:
3434
X11EGLWindow(xcb_connection_t* connection, xcb_screen_t* screen,
35-
xcb_window_t windowid, xcb_window_t parentid, EGLUtil<xcb_connection_t, xcb_window_t>& egl,
35+
xcb_window_t windowid, xcb_window_t parentid, const EGLUtil<xcb_connection_t, xcb_window_t>* egl,
3636
std::shared_ptr<Image> new_image);
3737
~X11EGLWindow() override;
3838

@@ -47,7 +47,7 @@ class X11EGLWindow : public Window
4747
xcb_window_t windowid;
4848
xcb_window_t parentid;
4949
std::shared_ptr<Image> image;
50-
EGLUtil<xcb_connection_t, xcb_window_t>& egl;
50+
const EGLUtil<xcb_connection_t, xcb_window_t>* egl;
5151

5252
GLuint texture;
5353
GLuint fbo;

src/canvas/x11/x11.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ void X11Canvas::add_image(const std::string& identifier, std::unique_ptr<Image>
189189
#ifdef ENABLE_OPENGL
190190
if (egl_available) {
191191
try {
192-
window = std::make_shared<X11EGLWindow>(connection, screen, window_id, parent, *egl, image);
192+
window = std::make_shared<X11EGLWindow>(connection, screen, window_id, parent, egl.get(), image);
193193
} catch (const std::runtime_error& err) {
194194
return;
195195
}

src/util/egl.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ auto EGLUtil<T, V>::error_to_string() const -> std::string_view
140140
}
141141

142142
template <class T, class V>
143-
auto EGLUtil<T, V>::create_context(EGLSurface surface) -> EGLContext
143+
auto EGLUtil<T, V>::create_context(EGLSurface surface) const -> EGLContext
144144
{
145145
EGLContext context = eglCreateContext(display, config, EGL_NO_CONTEXT, context_attrs.data());
146146
if (context == EGL_NO_CONTEXT) {
@@ -160,7 +160,7 @@ auto EGLUtil<T, V>::create_context(EGLSurface surface) -> EGLContext
160160
}
161161

162162
template <class T, class V>
163-
auto EGLUtil<T, V>::create_surface(V* native_window) -> EGLSurface
163+
auto EGLUtil<T, V>::create_surface(V* native_window) const -> EGLSurface
164164
{
165165
EGLSurface surface = eglCreatePlatformWindowSurface(display, config, native_window, nullptr);
166166
if (surface == EGL_NO_SURFACE) {
@@ -171,27 +171,27 @@ auto EGLUtil<T, V>::create_surface(V* native_window) -> EGLSurface
171171
}
172172

173173
template <class T, class V>
174-
void EGLUtil<T, V>::make_current(EGLSurface surface, EGLContext context)
174+
void EGLUtil<T, V>::make_current(EGLSurface surface, EGLContext context) const
175175
{
176176
eglMakeCurrent(display, surface, surface, context);
177177
}
178178

179179
template <class T, class V>
180-
void EGLUtil<T, V>::restore()
180+
void EGLUtil<T, V>::restore() const
181181
{
182182
eglMakeCurrent(display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
183183
}
184184

185185
template <class T, class V>
186-
void EGLUtil<T, V>::run_contained(EGLSurface surface, EGLContext context, const std::function<void()>& func)
186+
void EGLUtil<T, V>::run_contained(EGLSurface surface, EGLContext context, const std::function<void()>& func) const
187187
{
188188
make_current(surface, context);
189189
func();
190190
restore();
191191
}
192192

193193
template <class T, class V>
194-
void EGLUtil<T, V>::get_texture_from_image(const Image& image, GLuint texture)
194+
void EGLUtil<T, V>::get_texture_from_image(const Image& image, GLuint texture) const
195195
{
196196
glBindTexture(GL_TEXTURE_2D, texture);
197197

0 commit comments

Comments
 (0)