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