summaryrefslogtreecommitdiffstats
path: root/include/pool-buffer.h
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <RyanDwyer@users.noreply.github.com>2018-05-28 00:14:22 +1000
committerLibravatar GitHub <noreply@github.com>2018-05-28 00:14:22 +1000
commit8fda41dab52656c7c4a0db9a835ae57cea994538 (patch)
tree2b0c481616cd738e0f6ca92be9594eec7707799b /include/pool-buffer.h
parentImplement swap command (diff)
parentMerge pull request #2043 from emersion/pool-buffer-fixes (diff)
downloadsway-8fda41dab52656c7c4a0db9a835ae57cea994538.tar.gz
sway-8fda41dab52656c7c4a0db9a835ae57cea994538.tar.zst
sway-8fda41dab52656c7c4a0db9a835ae57cea994538.zip
Merge branch 'master' into cmd-swap
Diffstat (limited to 'include/pool-buffer.h')
-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