diff options
| author | Drew DeVault <sir@cmpwn.com> | 2015-11-18 08:22:37 -0500 |
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2015-11-18 08:22:53 -0500 |
| commit | 399220f14bc60581490936d9f1a0fd353bfc9ef5 (patch) | |
| tree | ec086840b4f340029e775d324279730fda64a9ad /include/client/buffer.h | |
| parent | 01202568f9da643716b47deb15db8416d1c3bdc7 (diff) | |
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.h | 8 |
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 @@ +#ifndef _BUFFER_H +#define _BUFFER_H + +#include "client/client.h" + +struct buffer *get_next_buffer(struct client_state *state); + +#endif |
