summaryrefslogtreecommitdiff
path: root/include/pool-buffer.h
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2018-03-28 12:21:50 -0400
committerDrew DeVault <[email protected]>2018-03-28 14:43:23 -0400
commitd39bda76c4007c42452a81883fefc671b816a74b (patch)
tree509a9c669bf2679085e27a1ff1b0c95526abf14c /include/pool-buffer.h
parent653853062f15639c97d02a8d67443506ce3af69d (diff)
Address review comments
Diffstat (limited to 'include/pool-buffer.h')
-rw-r--r--include/pool-buffer.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/pool-buffer.h b/include/pool-buffer.h
new file mode 100644
index 00000000..cdebd64d
--- /dev/null
+++ b/include/pool-buffer.h
@@ -0,0 +1,21 @@
+#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);
+
+#endif