2018-03-28 06:25:25 +11:00
|
|
|
#ifndef _SWAY_CAIRO_H
|
|
|
|
#define _SWAY_CAIRO_H
|
2018-11-18 10:33:06 +11:00
|
|
|
#include "config.h"
|
2018-03-28 06:25:25 +11:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <cairo/cairo.h>
|
2019-01-22 05:01:09 +11:00
|
|
|
#include <wayland-client-protocol.h>
|
2018-03-28 06:25:25 +11:00
|
|
|
|
|
|
|
void cairo_set_source_u32(cairo_t *cairo, uint32_t color);
|
2018-09-21 13:37:08 +10:00
|
|
|
cairo_subpixel_order_t to_cairo_subpixel_order(enum wl_output_subpixel subpixel);
|
2018-03-28 06:25:25 +11:00
|
|
|
|
|
|
|
cairo_surface_t *cairo_image_surface_scale(cairo_surface_t *image,
|
|
|
|
int width, int height);
|
|
|
|
|
|
|
|
#endif
|