Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/lightprobe.c
| Show First 20 Lines • Show All 85 Lines • ▼ Show 20 Lines | |||||
| IDTypeInfo IDType_ID_LP = { | IDTypeInfo IDType_ID_LP = { | ||||
| .id_code = ID_LP, | .id_code = ID_LP, | ||||
| .id_filter = FILTER_ID_LP, | .id_filter = FILTER_ID_LP, | ||||
| .main_listbase_index = INDEX_ID_LP, | .main_listbase_index = INDEX_ID_LP, | ||||
| .struct_size = sizeof(LightProbe), | .struct_size = sizeof(LightProbe), | ||||
| .name = "LightProbe", | .name = "LightProbe", | ||||
| .name_plural = "lightprobes", | .name_plural = "lightprobes", | ||||
| .translation_context = BLT_I18NCONTEXT_ID_LIGHTPROBE, | .translation_context = BLT_I18NCONTEXT_ID_LIGHTPROBE, | ||||
| .flags = 0, | .flags = IDTYPE_FLAGS_APPEND_IS_REUSABLE, | ||||
| .init_data = lightprobe_init_data, | .init_data = lightprobe_init_data, | ||||
| .copy_data = NULL, | .copy_data = NULL, | ||||
| .free_data = NULL, | .free_data = NULL, | ||||
| .make_local = NULL, | .make_local = NULL, | ||||
| .foreach_id = lightprobe_foreach_id, | .foreach_id = lightprobe_foreach_id, | ||||
| .foreach_cache = NULL, | .foreach_cache = NULL, | ||||
| .owner_get = NULL, | .owner_get = NULL, | ||||
| ▲ Show 20 Lines • Show All 43 Lines • Show Last 20 Lines | |||||