cagebreak/pango.h
Cagebreak Signing Key 3 31d53c5a8d Release 1.4.0
- Add support for closing windows
- Fix Issue 13
- Remove unnecessary header includes
2020-09-10 17:30:24 +02:00

12 lines
324 B
C

#ifndef _SWAY_PANGO_H
#define _SWAY_PANGO_H
#include <cairo/cairo.h>
void
get_text_size(cairo_t *cairo, const char *font, int *width, int *height,
int *baseline, double scale, const char *fmt, ...);
void
pango_printf(cairo_t *cairo, const char *font, double scale, const char *fmt,
...);
#endif