#pragma once #include #include #include #include struct buffer { int width; int height; bool busy; size_t size; void *mmapped; struct wl_buffer *wl_buf; cairo_surface_t *cairo_surface; cairo_t *cairo; }; struct buffer *shm_get_buffer(struct wl_shm *shm, int width, int height); void shm_fini(void);