summaryrefslogtreecommitdiffstats
path: root/include/client/window.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-11-29 15:27:28 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-11-29 15:27:28 -0500
commit82d464bb90af7fed57a36aacc2dce22994849bac (patch)
tree471b8eba3fb838115b163980b558cb151c6dbefc /include/client/window.h
parentOnly strip comments at the start of a line (diff)
downloadsway-82d464bb90af7fed57a36aacc2dce22994849bac.tar.gz
sway-82d464bb90af7fed57a36aacc2dce22994849bac.tar.zst
sway-82d464bb90af7fed57a36aacc2dce22994849bac.zip
Add text rendering support to wayland clients
Diffstat (limited to 'include/client/window.h')
-rw-r--r--include/client/window.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/client/window.h b/include/client/window.h
index af954003..eff9032d 100644
--- a/include/client/window.h
+++ b/include/client/window.h
@@ -34,6 +34,7 @@ struct window {
34 struct wl_callback *frame_cb; 34 struct wl_callback *frame_cb;
35 struct cursor cursor; 35 struct cursor cursor;
36 uint32_t width, height; 36 uint32_t width, height;
37 char *font;
37 cairo_t *cairo; 38 cairo_t *cairo;
38}; 39};
39 40