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.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/blenlib/BLI_vfontdata.h b/source/blender/blenlib/BLI_vfontdata.h
index 4d4c7c179e7..7fa7cab1ff7 100644
--- a/source/blender/blenlib/BLI_vfontdata.h
+++ b/source/blender/blenlib/BLI_vfontdata.h
@@ -32,18 +32,18 @@ struct PackedFile;
struct VFont;
typedef struct VFontData {
- struct GHash *characters;
- char name[128];
- float scale;
- /* Calculated from the font. */
- float em_height;
- float ascender;
+ struct GHash *characters;
+ char name[128];
+ float scale;
+ /* Calculated from the font. */
+ float em_height;
+ float ascender;
} VFontData;
typedef struct VChar {
- ListBase nurbsbase;
- unsigned int index;
- float width;
+ ListBase nurbsbase;
+ unsigned int index;
+ float width;
} VChar;
VFontData *BLI_vfontdata_from_freetypefont(struct PackedFile *pf);