Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/font.c
| Show First 20 Lines • Show All 170 Lines • ▼ Show 20 Lines | IDTypeInfo IDType_ID_VF = { | ||||
| .foreach_cache = NULL, | .foreach_cache = NULL, | ||||
| .blend_write = vfont_blend_write, | .blend_write = vfont_blend_write, | ||||
| .blend_read_data = vfont_blend_read_data, | .blend_read_data = vfont_blend_read_data, | ||||
| .blend_read_lib = NULL, | .blend_read_lib = NULL, | ||||
| .blend_read_expand = NULL, | .blend_read_expand = NULL, | ||||
| .blend_read_undo_preserve = NULL, | .blend_read_undo_preserve = NULL, | ||||
| .lib_override_apply_post = NULL, | |||||
| }; | }; | ||||
| /***************************** VFont *******************************/ | /***************************** VFont *******************************/ | ||||
| /* The vfont code */ | /* The vfont code */ | ||||
| void BKE_vfont_free_data(struct VFont *vfont) | void BKE_vfont_free_data(struct VFont *vfont) | ||||
| { | { | ||||
| if (vfont->data) { | if (vfont->data) { | ||||
| ▲ Show 20 Lines • Show All 1,607 Lines • Show Last 20 Lines | |||||