mirror of
https://github.com/NickHu/sway
synced 2024-12-29 22:23:46 +01:00
10 lines
223 B
C
10 lines
223 B
C
#ifndef _SWAY_CAIRO_H
|
|
#define _SWAY_CAIRO_H
|
|
|
|
#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
|