blob: 3b0ef44f5f929ed6209b79a3bfae1f591f2b3a11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <X11/Xft/Xft.h>
#include <hb.h>
#include <hb-ft.h>
typedef struct {
hb_buffer_t *buffer;
hb_glyph_info_t *glyphs;
hb_glyph_position_t *positions;
unsigned int count;
} HbTransformData;
void hbunloadfonts();
void hbtransform(HbTransformData *, XftFont *, const Glyph *, int, int);
void hbcleanup(HbTransformData *);
|