mirror of
https://github.com/snowie2000/mactype.git
synced 2025-01-05 10:17:02 +08:00
07a1eee62c
Dependency not included. Deps: EasyHook, FreeType
19 lines
461 B
C
19 lines
461 B
C
|
|
#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
|
|
/* store GSUB feature vert/vrt2 */
|
|
struct ft2vert_st *ft2vert_init(FT_Face face);
|
|
void ft2vert_final(FT_Face face, struct ft2vert_st *vert);
|
|
|
|
/* convert horizontal glyph index to vertical glyph index
|
|
*/
|
|
FT_UInt ft2vert_get_gid(const struct ft2vert_st *ft2vert, const FT_UInt gid);
|
|
FT_UInt ft2_subst_uvs(const FT_Face face, const FT_UInt gid, const FT_UInt vsindex, const FT_UInt baseChar);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|