Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/camera.c
| Show First 20 Lines • Show All 176 Lines • ▼ Show 20 Lines | |||||
| IDTypeInfo IDType_ID_CA = { | IDTypeInfo IDType_ID_CA = { | ||||
| .id_code = ID_CA, | .id_code = ID_CA, | ||||
| .id_filter = FILTER_ID_CA, | .id_filter = FILTER_ID_CA, | ||||
| .main_listbase_index = INDEX_ID_CA, | .main_listbase_index = INDEX_ID_CA, | ||||
| .struct_size = sizeof(Camera), | .struct_size = sizeof(Camera), | ||||
| .name = "Camera", | .name = "Camera", | ||||
| .name_plural = "cameras", | .name_plural = "cameras", | ||||
| .translation_context = BLT_I18NCONTEXT_ID_CAMERA, | .translation_context = BLT_I18NCONTEXT_ID_CAMERA, | ||||
| .flags = 0, | .flags = IDTYPE_FLAGS_APPEND_IS_REUSABLE, | ||||
| .init_data = camera_init_data, | .init_data = camera_init_data, | ||||
| .copy_data = camera_copy_data, | .copy_data = camera_copy_data, | ||||
| .free_data = camera_free_data, | .free_data = camera_free_data, | ||||
| .make_local = NULL, | .make_local = NULL, | ||||
| .foreach_id = camera_foreach_id, | .foreach_id = camera_foreach_id, | ||||
| .foreach_cache = NULL, | .foreach_cache = NULL, | ||||
| .owner_get = NULL, | .owner_get = NULL, | ||||
| ▲ Show 20 Lines • Show All 967 Lines • Show Last 20 Lines | |||||