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.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.h')
-rw-r--r-- | include/client.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/include/client.h b/include/client.h deleted file mode 100644 index f10e6b1a..00000000 --- a/include/client.h +++ /dev/null @@ -1,46 +0,0 @@ -#ifndef _CLIENT_H -#define _CLIENT_H - -#include <wayland-client.h> -#include <cairo/cairo.h> -#include <pango/pangocairo.h> -#include <stdbool.h> -#include "list.h" - -struct output_state { - struct wl_output *output; - uint32_t flags; - int width, height; -}; - -struct buffer { - struct wl_buffer *buffer; - struct wl_shm_pool *pool; - uint32_t width, height; -}; - -struct client_state { - struct wl_compositor *compositor; - struct wl_display *display; - struct wl_pointer *pointer; - struct wl_seat *seat; - struct wl_shell *shell; - struct wl_shm *shm; - struct buffer *buffer; - struct wl_surface *surface; - struct wl_shell_surface *shell_surface; - struct wl_callback *frame_cb; - bool busy; - cairo_t *cairo; - cairo_surface_t *cairo_surface; - PangoContext *pango; - list_t *outputs; -}; - -struct client_state *client_setup(void); -void client_teardown(struct client_state *state); -struct buffer *create_memory_pool(struct client_state *state, int32_t width, int32_t height, uint32_t format); -int client_prerender(struct client_state *state); -int client_render(struct client_state *state); - -#endif |