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:
authorCampbell Barton <ideasman42@gmail.com>2013-12-28 12:45:54 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-12-28 12:45:54 +0400
commit2654b28f046ea3a444717ebc7f36f9b5ef22f7f1 (patch)
tree56dc15d7c666bc54413c35f8278487b948710fb7 /source/blender/blenlib/BLI_vfontdata.h
parent1aa62605cdf7c43085c9d1db606b2c0c460e9897 (diff)
Text3d: avoid calculating the font boundbox scale for every character
Diffstat (limited to 'source/blender/blenlib/BLI_vfontdata.h')
-rw-r--r--source/blender/blenlib/BLI_vfontdata.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_vfontdata.h b/source/blender/blenlib/BLI_vfontdata.h
index cb41fe488db..8a7079b6c5f 100644
--- a/source/blender/blenlib/BLI_vfontdata.h
+++ b/source/blender/blenlib/BLI_vfontdata.h
@@ -42,6 +42,7 @@ struct VFont;
typedef struct VFontData {
struct GHash *characters;
char name[128];
+ float scale;
} VFontData;
typedef struct VChar {