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:
authorDiego Borghetti <bdiego@gmail.com>2009-06-12 21:18:59 +0400
committerDiego Borghetti <bdiego@gmail.com>2009-06-12 21:18:59 +0400
commit845e9a0e25ab7257005288fe2938a8ca9ca856d2 (patch)
treec27e2064ad29f429b5fe78874388491effc50ca0 /source/blender/blenfont/BLF_api.h
parent0e170f8e5633ee46c413ab759e9cf3ba1ffb82ea (diff)
Made the kerning a float, this give a little more of tweak.
0.5 is the default value now, the range are from -5.0 to 5.0. Note that we allow negative value, but the current draw code always check for overlap characters.
Diffstat (limited to 'source/blender/blenfont/BLF_api.h')
-rw-r--r--source/blender/blenfont/BLF_api.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenfont/BLF_api.h b/source/blender/blenfont/BLF_api.h
index d1d802622ea..e871de490f3 100644
--- a/source/blender/blenfont/BLF_api.h
+++ b/source/blender/blenfont/BLF_api.h
@@ -85,7 +85,7 @@ float BLF_height_default(char *str);
void BLF_rotation(float angle);
void BLF_clipping(float xmin, float ymin, float xmax, float ymax);
void BLF_blur(int size);
-void BLF_kerning(int space);
+void BLF_kerning(float space);
void BLF_enable(int option);
void BLF_disable(int option);