diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-04-12 20:19:54 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-04-12 20:19:54 -0400 |
| commit | e62f2f43e2b428a4066fc43e5d2739940f7aa5e9 (patch) | |
| tree | c653c6d525b471914c01a9d7ae543f521b6138ed /include/pool-buffer.h | |
| parent | 816bb9d54d2e9e3cbf5e14d7237dc8c8737d6b82 (diff) | |
| parent | 0cb0c52663a8e27f632988da0f91e4cfb6afddf8 (diff) | |
Merge branch 'wlroots'
Diffstat (limited to 'include/pool-buffer.h')
| -rw-r--r-- | include/pool-buffer.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/pool-buffer.h b/include/pool-buffer.h new file mode 100644 index 00000000..856f7c8c --- /dev/null +++ b/include/pool-buffer.h @@ -0,0 +1,22 @@ +#ifndef _SWAY_BUFFERS_H +#define _SWAY_BUFFERS_H +#include <cairo/cairo.h> +#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; + bool busy; +}; + +struct pool_buffer *get_next_buffer(struct wl_shm *shm, + struct pool_buffer pool[static 2], uint32_t width, uint32_t height); +void destroy_buffer(struct pool_buffer *buffer); + +#endif |
