2019-01-13 20:15:32 -06:00
|
|
|
#ifndef _SWAY_BUFFERS_H
|
|
|
|
#define _SWAY_BUFFERS_H
|
|
|
|
#include <cairo/cairo.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <wayland-client.h>
|
|
|
|
|
|
|
|
struct pool_buffer {
|
|
|
|
struct wl_buffer *buffer;
|
|
|
|
cairo_surface_t *surface;
|
|
|
|
cairo_t *cairo;
|
|
|
|
uint32_t width, height;
|
|
|
|
void *data;
|
|
|
|
size_t size;
|
|
|
|
bool busy;
|
|
|
|
};
|
|
|
|
|
2023-03-12 15:48:58 -05:00
|
|
|
struct pool_buffer *create_buffer(struct wl_shm *shm, struct pool_buffer *buf,
|
|
|
|
int32_t width, int32_t height, uint32_t format);
|
2019-01-13 20:15:32 -06:00
|
|
|
struct pool_buffer *get_next_buffer(struct wl_shm *shm,
|
2023-03-12 15:48:58 -05:00
|
|
|
struct pool_buffer pool[static 2], uint32_t width, uint32_t height);
|
2019-01-13 20:15:32 -06:00
|
|
|
void destroy_buffer(struct pool_buffer *buffer);
|
|
|
|
|
|
|
|
#endif
|