wayland: remove a few unused fields

This commit is contained in:
IoIxD
2025-12-18 18:27:44 -07:00
parent 59ff6f1008
commit 18511dec2f
2 changed files with 11 additions and 13 deletions

View File

@@ -9,6 +9,16 @@
#include <wayland-util.h>
#include <unistd.h>
/* TODO:
* - MwLLMakeToolWindowImpl
* - MwLLSetClipboardImpl
* - MwLLGrabPointerImpl
* - MwLLFocusImpl
* - MwLLMakePopupImpl
* - MwLLShowImpl
* - MwLLDetachImpl
*/
/* TODO: find out what FreeBSD and such wants us to include */
#ifdef __FreeBSD__
/* XXX: Untested (nishi) */
@@ -501,11 +511,6 @@ static void xdg_toplevel_configure(void* data,
MwLLDispatch(self, resize, NULL);
MwLLDispatch(self, draw, NULL);
for(i = 0; i < arrlen(self->wayland.sublevels); i++) {
MwLL handle = self->wayland.sublevels[i];
region_setup(handle);
}
/*if(!self->wayland.egl_setup) {
self->wayland.egl_setup = egl_setup(self, self->wayland.x, self->wayland.y, width, height);
} else {
@@ -856,8 +861,6 @@ static MwLL MwLLCreateImpl(MwLL parent, int x, int y, int width, int height) {
r->wayland.x = x;
r->wayland.y = y;
r->wayland.sublevels = NULL;
if(parent == NULL) {
setup_toplevel(r, x, y);
} else {