Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenfont/intern/blf.c
| Context not available. | |||||
| blf_font_exit(); | blf_font_exit(); | ||||
| } | } | ||||
| void BLF_cache_clear(void) | void BLF_cache_clear(int forceClear) | ||||
| { | { | ||||
| FontBLF *font; | FontBLF *font; | ||||
| int i; | int i; | ||||
| Context not available. | |||||
| for (i = 0; i < BLF_MAX_FONT; i++) { | for (i = 0; i < BLF_MAX_FONT; i++) { | ||||
| font = global_font[i]; | font = global_font[i]; | ||||
| if (font) | if (font) | ||||
| blf_glyph_cache_clear(font); | blf_glyph_cache_clear(font, forceClear); | ||||
| } | } | ||||
| } | } | ||||
| Context not available. | |||||