Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
st/hb.h

15 lines
330 B
C
Raw Permalink Normal View History

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