mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			329 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			329 B
		
	
	
	
		
			C
		
	
	
	
	
	
#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);
 | 
						|
 | 
						|
#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
 |