2018-03-27 19:25:25 +00:00
|
|
|
#ifndef _SWAY_BUFFERS_H
|
|
|
|
#define _SWAY_BUFFERS_H
|
2021-05-07 20:57:51 +00:00
|
|
|
#include <cairo.h>
|
2018-03-27 19:25:25 +00:00
|
|
|
#include <pango/pangocairo.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;
|
|
|
|
PangoContext *pango;
|
|
|
|
uint32_t width, height;
|
2018-05-25 18:42:23 +00:00
|
|
|
void *data;
|
|
|
|
size_t size;
|
2018-03-27 19:25:25 +00:00
|
|
|
bool busy;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pool_buffer *get_next_buffer(struct wl_shm *shm,
|
|
|
|
struct pool_buffer pool[static 2], uint32_t width, uint32_t height);
|
2018-04-05 19:39:57 +00:00
|
|
|
void destroy_buffer(struct pool_buffer *buffer);
|
2018-03-27 19:25:25 +00:00
|
|
|
|
|
|
|
#endif
|