summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-05-27 14:18:02 +0100
committerLibravatar GitHub <noreply@github.com>2018-05-27 14:18:02 +0100
commitde32b6d52ef8cf7d477fba23f42ca054155add56 (patch)
treeb0319dfd3cc0a4b221ddac5670f40b4476988b3b /include
parentMerge pull request #2053 from emersion/xdg-shell-tiled (diff)
parentclient/pool-buffer: munmap in destroy_buffer (diff)
downloadsway-de32b6d52ef8cf7d477fba23f42ca054155add56.tar.gz
sway-de32b6d52ef8cf7d477fba23f42ca054155add56.tar.zst
sway-de32b6d52ef8cf7d477fba23f42ca054155add56.zip
Merge pull request #2043 from emersion/pool-buffer-fixes
Pool buffer fixes
Diffstat (limited to 'include')
-rw-r--r--include/pool-buffer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/pool-buffer.h b/include/pool-buffer.h
index 856f7c8c..54f5be06 100644
--- a/include/pool-buffer.h
+++ b/include/pool-buffer.h
@@ -12,6 +12,8 @@ struct pool_buffer {
12 cairo_t *cairo; 12 cairo_t *cairo;
13 PangoContext *pango; 13 PangoContext *pango;
14 uint32_t width, height; 14 uint32_t width, height;
15 void *data;
16 size_t size;
15 bool busy; 17 bool busy;
16}; 18};
17 19