aboutsummaryrefslogtreecommitdiff
path: root/include/client/cairo.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-03-28 15:25:33 -0400
committerGitHub <noreply@github.com>2018-03-28 15:25:33 -0400
commit9070950eecded7bfa64e7bca3bb76b150ccc8b72 (patch)
tree509a9c669bf2679085e27a1ff1b0c95526abf14c /include/client/cairo.h
parent45a50d5afe013b31d9c94090d990bca49448d396 (diff)
parentd39bda76c4007c42452a81883fefc671b816a74b (diff)
downloadsway-9070950eecded7bfa64e7bca3bb76b150ccc8b72.tar.xz
Merge pull request #1638 from swaywm/swaybg-layers
Reimplement swaybg using surface layers
Diffstat (limited to 'include/client/cairo.h')
-rw-r--r--include/client/cairo.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/include/client/cairo.h b/include/client/cairo.h
deleted file mode 100644
index e7ef7c7e..00000000
--- a/include/client/cairo.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#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);
-
-#ifdef WITH_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