Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/image.c
| Show First 20 Lines • Show All 339 Lines • ▼ Show 20 Lines | |||||
| IDTypeInfo IDType_ID_IM = { | IDTypeInfo IDType_ID_IM = { | ||||
| .id_code = ID_IM, | .id_code = ID_IM, | ||||
| .id_filter = FILTER_ID_IM, | .id_filter = FILTER_ID_IM, | ||||
| .main_listbase_index = INDEX_ID_IM, | .main_listbase_index = INDEX_ID_IM, | ||||
| .struct_size = sizeof(Image), | .struct_size = sizeof(Image), | ||||
| .name = "Image", | .name = "Image", | ||||
| .name_plural = "images", | .name_plural = "images", | ||||
| .translation_context = BLT_I18NCONTEXT_ID_IMAGE, | .translation_context = BLT_I18NCONTEXT_ID_IMAGE, | ||||
| .flags = IDTYPE_FLAGS_NO_ANIMDATA, | .flags = IDTYPE_FLAGS_NO_ANIMDATA | IDTYPE_FLAGS_APPEND_IS_REUSABLE, | ||||
| .init_data = image_init_data, | .init_data = image_init_data, | ||||
| .copy_data = image_copy_data, | .copy_data = image_copy_data, | ||||
| .free_data = image_free_data, | .free_data = image_free_data, | ||||
| .make_local = NULL, | .make_local = NULL, | ||||
| .foreach_id = NULL, | .foreach_id = NULL, | ||||
| .foreach_cache = image_foreach_cache, | .foreach_cache = image_foreach_cache, | ||||
| .owner_get = NULL, | .owner_get = NULL, | ||||
| ▲ Show 20 Lines • Show All 5,750 Lines • Show Last 20 Lines | |||||