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>2009-07-31 05:40:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-07-31 05:40:15 +0400
commit2a727083c9cf6bb10b7506e8ed365831c458babc (patch)
treea992628090a4526f8874311f6b5e44ab98e3ecce /source/blender/blenfont/BLF_api.h
parentc371f49d9aaf2c9eca90329954fe217efb5cf3f6 (diff)
fix for warnings and implicit declarations
also fixed smoke comparing a float's mem-location rather then its value.
Diffstat (limited to 'source/blender/blenfont/BLF_api.h')
-rw-r--r--source/blender/blenfont/BLF_api.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenfont/BLF_api.h b/source/blender/blenfont/BLF_api.h
index b77f4a8fcd1..c1b14a14f8c 100644
--- a/source/blender/blenfont/BLF_api.h
+++ b/source/blender/blenfont/BLF_api.h
@@ -140,6 +140,9 @@ char **BLF_dir_get(int *ndir);
/* Free the data return by BLF_dir_get. */
void BLF_dir_free(char **dirs, int count);
+/* Set the current draw mode. */
+void BLF_mode(int mode);
+
/* font->flags. */
#define BLF_ROTATION (1<<0)
#define BLF_CLIPPING (1<<1)