summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Christoph Gysin <christoph.gysin@gmail.com>2016-01-25 22:44:27 +0200
committerLibravatar Christoph Gysin <christoph.gysin@gmail.com>2016-01-25 22:44:33 +0200
commita5345e807e229ee9e0e2f4bcb148aab0e7216e22 (patch)
tree7d7319859fdfa90ac7e6803b634f38a5418bb180 /include
parentMerge pull request #475 from christophgysin/swaylock_color (diff)
downloadsway-a5345e807e229ee9e0e2f4bcb148aab0e7216e22.tar.gz
sway-a5345e807e229ee9e0e2f4bcb148aab0e7216e22.tar.zst
sway-a5345e807e229ee9e0e2f4bcb148aab0e7216e22.zip
extract cairo_set_source_u32()
Diffstat (limited to 'include')
-rw-r--r--include/client/cairo.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/client/cairo.h b/include/client/cairo.h
index ad8390c4..46c53566 100644
--- a/include/client/cairo.h
+++ b/include/client/cairo.h
@@ -1,6 +1,11 @@
1#ifndef _SWAY_CAIRO_H 1#ifndef _SWAY_CAIRO_H
2#define _SWAY_CAIRO_H 2#define _SWAY_CAIRO_H
3 3
4#include <stdint.h>
5#include <cairo/cairo.h>
6
7void cairo_set_source_u32(cairo_t *cairo, uint32_t color);
8
4#ifdef WITH_GDK_PIXBUF 9#ifdef WITH_GDK_PIXBUF
5#include <gdk-pixbuf/gdk-pixbuf.h> 10#include <gdk-pixbuf/gdk-pixbuf.h>
6 11