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:
authorDalai Felinto <dalai@blender.org>2020-03-06 22:00:42 +0300
committerDalai Felinto <dalai@blender.org>2020-03-06 22:07:02 +0300
commitafe6df1487fd001e18c30bd85660154753ece345 (patch)
tree9a18e26298bb5321e3327e98e6927b65b8aa3390 /source/blender/blenkernel/BKE_font.h
parent558f449f8c4b212302a2530daecda9346ea10177 (diff)
Cleanup: VFont: Move to IDTypeInfo and remove unused BKE API
This was particularly strange because we had a _free_data() function. But still the one I replaced was of course the _free() one. And we should rename the _free_data_ function later to avoid confusions.
Diffstat (limited to 'source/blender/blenkernel/BKE_font.h')
-rw-r--r--source/blender/blenkernel/BKE_font.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/blender/blenkernel/BKE_font.h b/source/blender/blenkernel/BKE_font.h
index 31938c48529..35f7d8b7d53 100644
--- a/source/blender/blenkernel/BKE_font.h
+++ b/source/blender/blenkernel/BKE_font.h
@@ -71,19 +71,11 @@ bool BKE_vfont_is_builtin(struct VFont *vfont);
void BKE_vfont_builtin_register(void *mem, int size);
void BKE_vfont_free_data(struct VFont *vfont);
-void BKE_vfont_free(struct VFont *sc);
-void BKE_vfont_init(struct VFont *vfont);
-void BKE_vfont_copy_data(struct Main *bmain,
- struct VFont *vfont_dst,
- const struct VFont *vfont_src,
- const int flag);
struct VFont *BKE_vfont_builtin_get(void);
struct VFont *BKE_vfont_load(struct Main *bmain, const char *filepath);
struct VFont *BKE_vfont_load_exists_ex(struct Main *bmain, const char *filepath, bool *r_exists);
struct VFont *BKE_vfont_load_exists(struct Main *bmain, const char *filepath);
-void BKE_vfont_make_local(struct Main *bmain, struct VFont *vfont, const int flags);
-
bool BKE_vfont_to_curve_ex(struct Object *ob,
struct Curve *cu,
int mode,