Refactor gdk pixbuf code into shared client lib

This commit is contained in:
Drew DeVault 2015-12-10 07:57:46 -05:00
parent f80481a37d
commit 080a263785
6 changed files with 123 additions and 109 deletions

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

@ -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