summaryrefslogtreecommitdiffstats
path: root/include/client/buffer.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-11-18 08:22:37 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-11-18 08:22:53 -0500
commit399220f14bc60581490936d9f1a0fd353bfc9ef5 (patch)
treeec086840b4f340029e775d324279730fda64a9ad /include/client/buffer.h
parentTrack pid of child process from exec (diff)
downloadsway-399220f14bc60581490936d9f1a0fd353bfc9ef5.tar.gz
sway-399220f14bc60581490936d9f1a0fd353bfc9ef5.tar.zst
sway-399220f14bc60581490936d9f1a0fd353bfc9ef5.zip
Fix up wayland client implementation
Now it receives frame callbacks and renders properly, and is double buffered and such.
Diffstat (limited to 'include/client/buffer.h')
-rw-r--r--include/client/buffer.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/client/buffer.h b/include/client/buffer.h
new file mode 100644
index 00000000..aa8d68a1
--- /dev/null
+++ b/include/client/buffer.h
@@ -0,0 +1,8 @@
1#ifndef _BUFFER_H
2#define _BUFFER_H
3
4#include "client/client.h"
5
6struct buffer *get_next_buffer(struct client_state *state);
7
8#endif