2021-05-07 20:57:51 +00:00
|
|
|
#ifndef _SWAY_CAIRO_UTIL_H
|
|
|
|
#define _SWAY_CAIRO_UTIL_H
|
2018-11-17 23:33:06 +00:00
|
|
|
#include "config.h"
|
2018-03-27 19:25:25 +00:00
|
|
|
#include <stdint.h>
|
2021-05-07 20:57:51 +00:00
|
|
|
#include <cairo.h>
|
2019-01-21 18:01:09 +00:00
|
|
|
#include <wayland-client-protocol.h>
|
2018-03-27 19:25:25 +00:00
|
|
|
|
|
|
|
void cairo_set_source_u32(cairo_t *cairo, uint32_t color);
|
2018-09-21 03:37:08 +00:00
|
|
|
cairo_subpixel_order_t to_cairo_subpixel_order(enum wl_output_subpixel subpixel);
|
2018-03-27 19:25:25 +00:00
|
|
|
|
|
|
|
cairo_surface_t *cairo_image_surface_scale(cairo_surface_t *image,
|
|
|
|
int width, int height);
|
|
|
|
|
|
|
|
#endif
|