* add svn ignore
[ezgdi.git] / ezgdi / ft2vert.h
blobdf1938f0e3daa57fa562ee1d44932a5f61abd403
1 #pragma once
3 #ifdef __cplusplus
4 extern "C"{
5 #endif
7 /* store GSUB feature vert/vrt2 */
8 struct ft2vert_st *ft2vert_init(FT_Face face);
9 void ft2vert_final(FT_Face face, struct ft2vert_st *vert);
11 /* convert horizontal glyph index to vertical glyph index
13 FT_UInt ft2vert_get_gid(const struct ft2vert_st *ft2vert, const FT_UInt gid);
14 FT_UInt ft2_subst_uvs(const FT_Face face, const FT_UInt gid, const FT_UInt vsindex, const FT_UInt baseChar);
16 #ifdef __cplusplus
18 #endif