Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/light.c
| Show First 20 Lines • Show All 187 Lines • ▼ Show 20 Lines | |||||
| IDTypeInfo IDType_ID_LA = { | IDTypeInfo IDType_ID_LA = { | ||||
| .id_code = ID_LA, | .id_code = ID_LA, | ||||
| .id_filter = FILTER_ID_LA, | .id_filter = FILTER_ID_LA, | ||||
| .main_listbase_index = INDEX_ID_LA, | .main_listbase_index = INDEX_ID_LA, | ||||
| .struct_size = sizeof(Light), | .struct_size = sizeof(Light), | ||||
| .name = "Light", | .name = "Light", | ||||
| .name_plural = "lights", | .name_plural = "lights", | ||||
| .translation_context = BLT_I18NCONTEXT_ID_LIGHT, | .translation_context = BLT_I18NCONTEXT_ID_LIGHT, | ||||
| .flags = 0, | .flags = IDTYPE_FLAGS_APPEND_IS_REUSABLE, | ||||
| .init_data = light_init_data, | .init_data = light_init_data, | ||||
| .copy_data = light_copy_data, | .copy_data = light_copy_data, | ||||
| .free_data = light_free_data, | .free_data = light_free_data, | ||||
| .make_local = NULL, | .make_local = NULL, | ||||
| .foreach_id = light_foreach_id, | .foreach_id = light_foreach_id, | ||||
| .foreach_cache = NULL, | .foreach_cache = NULL, | ||||
| .owner_get = NULL, | .owner_get = NULL, | ||||
| Show All 24 Lines | |||||