Fix up wayland client implementation

Now it receives frame callbacks and renders properly, and is double
buffered and such.
This commit is contained in:
Drew DeVault 2015-11-18 08:22:37 -05:00
parent 01202568f9
commit 399220f14b
5 changed files with 167 additions and 120 deletions

8
include/client/buffer.h Normal file
View file

@ -0,0 +1,8 @@
#ifndef _BUFFER_H
#define _BUFFER_H
#include "client/client.h"
struct buffer *get_next_buffer(struct client_state *state);
#endif