Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenlib/BLI_vfontdata.h')
-rw-r--r--source/blender/blenlib/BLI_vfontdata.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/source/blender/blenlib/BLI_vfontdata.h b/source/blender/blenlib/BLI_vfontdata.h
index b0a57ee9288..9130061c53e 100644
--- a/source/blender/blenlib/BLI_vfontdata.h
+++ b/source/blender/blenlib/BLI_vfontdata.h
@@ -40,17 +40,14 @@ struct PackedFile;
struct VFont;
typedef struct VFontData {
- ListBase characters;
+ struct GHash *characters;
char name[128];
} VFontData;
typedef struct VChar {
- struct VChar *next, *prev;
ListBase nurbsbase;
- intptr_t index;
- float resol;
+ unsigned int index;
float width;
- float *points;
} VChar;
VFontData *BLI_vfontdata_from_freetypefont(struct PackedFile *pf);