st/hb.h

15 lines
330 B
C
Raw Normal View History

#include <X11/Xft/Xft.h>
#include <hb.h>
#include <hb-ft.h>
2022-12-19 10:09:06 +01:00
typedef struct {
hb_buffer_t *buffer;
hb_glyph_info_t *glyphs;
hb_glyph_position_t *positions;
unsigned int count;
} HbTransformData;
void hbunloadfonts();
2022-12-19 10:09:06 +01:00
void hbtransform(HbTransformData *, XftFont *, const Glyph *, int, int);
void hbcleanup(HbTransformData *);