Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/font.c
| Show First 20 Lines • Show All 154 Lines • ▼ Show 20 Lines | |||||
| IDTypeInfo IDType_ID_VF = { | IDTypeInfo IDType_ID_VF = { | ||||
| .id_code = ID_VF, | .id_code = ID_VF, | ||||
| .id_filter = FILTER_ID_VF, | .id_filter = FILTER_ID_VF, | ||||
| .main_listbase_index = INDEX_ID_VF, | .main_listbase_index = INDEX_ID_VF, | ||||
| .struct_size = sizeof(VFont), | .struct_size = sizeof(VFont), | ||||
| .name = "Font", | .name = "Font", | ||||
| .name_plural = "fonts", | .name_plural = "fonts", | ||||
| .translation_context = BLT_I18NCONTEXT_ID_VFONT, | .translation_context = BLT_I18NCONTEXT_ID_VFONT, | ||||
| .flags = IDTYPE_FLAGS_NO_ANIMDATA, | .flags = IDTYPE_FLAGS_NO_ANIMDATA | IDTYPE_FLAGS_APPEND_IS_REUSABLE, | ||||
| .init_data = vfont_init_data, | .init_data = vfont_init_data, | ||||
| .copy_data = vfont_copy_data, | .copy_data = vfont_copy_data, | ||||
| .free_data = vfont_free_data, | .free_data = vfont_free_data, | ||||
| .make_local = NULL, | .make_local = NULL, | ||||
| .foreach_id = NULL, | .foreach_id = NULL, | ||||
| .foreach_cache = NULL, | .foreach_cache = NULL, | ||||
| .owner_get = NULL, | .owner_get = NULL, | ||||
| ▲ Show 20 Lines • Show All 1,656 Lines • Show Last 20 Lines | |||||