summaryrefslogtreecommitdiffstats
path: root/include/client
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-12-10 07:57:46 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-12-10 07:57:46 -0500
commit080a263785cfa4b7f54b90b1fed7a8356714d5d0 (patch)
tree666cb4f8722c6a2dffc1df44a995655bc2b7e9da /include/client
parentAdd swaylock subproject (diff)
downloadsway-080a263785cfa4b7f54b90b1fed7a8356714d5d0.tar.gz
sway-080a263785cfa4b7f54b90b1fed7a8356714d5d0.tar.zst
sway-080a263785cfa4b7f54b90b1fed7a8356714d5d0.zip
Refactor gdk pixbuf code into shared client lib
Diffstat (limited to 'include/client')
-rw-r--r--include/client/cairo.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/client/cairo.h b/include/client/cairo.h
new file mode 100644
index 00000000..98ced907
--- /dev/null
+++ b/include/client/cairo.h
@@ -0,0 +1,8 @@
1#ifndef _SWAY_CAIRO_H
2#define _SWAY_CAIRO_H
3
4#include <gdk-pixbuf/gdk-pixbuf.h>
5
6cairo_surface_t* gdk_cairo_image_surface_create_from_pixbuf(const GdkPixbuf *gdkbuf);
7
8#endif