Логи закрытия

This commit is contained in:
2025-11-16 20:57:46 +03:00
parent 6880efafab
commit 0d3efeda49
3 changed files with 7 additions and 5 deletions

View File

@@ -5,14 +5,15 @@
/* Data for a single Wayland window (one surface) */
struct wayland_window {
int id;
struct wl_surface *wl_surface;
struct wl_buffer *buffer;
struct wl_callback *frame_callback;
struct xdg_surface *xdg_surface;
struct xdg_toplevel *xdg_toplevel;
uint8_t *data;
int16_t width;
int16_t height;
int32_t width;
int32_t height;
int need_close;
uint8_t color;
};