Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenlib/BLI_vfontdata.h
| Show First 20 Lines • Show All 46 Lines • ▼ Show 20 Lines | |||||
| typedef struct VChar { | typedef struct VChar { | ||||
| ListBase nurbsbase; | ListBase nurbsbase; | ||||
| unsigned int index; | unsigned int index; | ||||
| float width; | float width; | ||||
| } VChar; | } VChar; | ||||
| VFontData *BLI_vfontdata_from_freetypefont(struct PackedFile *pf); | VFontData *BLI_vfontdata_from_freetypefont(struct PackedFile *pf); | ||||
| VFontData *BLI_vfontdata_copy(const VFontData *vfont_src, const int flag); | |||||
| VChar *BLI_vfontchar_from_freetypefont(struct VFont *vfont, unsigned long character); | VChar *BLI_vfontchar_from_freetypefont(struct VFont *vfont, unsigned long character); | ||||
| VChar *BLI_vfontchar_copy(const VChar *vchar_src, const int flag); | |||||
| #endif | #endif | ||||