aboutsummaryrefslogtreecommitdiff
path: root/include/client
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2015-12-10 07:57:46 -0500
committerFurkan Sahin <furkan-dev@proton.me>2015-12-10 07:57:46 -0500
commitced417235872de9d30808e1459137474f4a910b8 (patch)
tree666cb4f8722c6a2dffc1df44a995655bc2b7e9da /include/client
parentffaea08a9eebfd66f1ab61d683aaea19a01e750b (diff)
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 @@
+#ifndef _SWAY_CAIRO_H
+#define _SWAY_CAIRO_H
+
+#include <gdk-pixbuf/gdk-pixbuf.h>
+
+cairo_surface_t* gdk_cairo_image_surface_create_from_pixbuf(const GdkPixbuf *gdkbuf);
+
+#endif