diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-04-12 20:19:54 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-04-12 20:19:54 -0400 |
| commit | e62f2f43e2b428a4066fc43e5d2739940f7aa5e9 (patch) | |
| tree | c653c6d525b471914c01a9d7ae543f521b6138ed /include/cairo.h | |
| parent | 816bb9d54d2e9e3cbf5e14d7237dc8c8737d6b82 (diff) | |
| parent | 0cb0c52663a8e27f632988da0f91e4cfb6afddf8 (diff) | |
Merge branch 'wlroots'
Diffstat (limited to 'include/cairo.h')
| -rw-r--r-- | include/cairo.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/cairo.h b/include/cairo.h new file mode 100644 index 00000000..31672705 --- /dev/null +++ b/include/cairo.h @@ -0,0 +1,19 @@ +#ifndef _SWAY_CAIRO_H +#define _SWAY_CAIRO_H +#include <stdint.h> +#include <cairo/cairo.h> + +void cairo_set_source_u32(cairo_t *cairo, uint32_t color); + +cairo_surface_t *cairo_image_surface_scale(cairo_surface_t *image, + int width, int height); + +#include "config.h" +#ifdef HAVE_GDK_PIXBUF +#include <gdk-pixbuf/gdk-pixbuf.h> + +cairo_surface_t* gdk_cairo_image_surface_create_from_pixbuf( + const GdkPixbuf *gdkbuf); +#endif //WITH_GDK_PIXBUF + +#endif |
