Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/texture.c
| Show First 20 Lines • Show All 204 Lines • ▼ Show 20 Lines | |||||
| IDTypeInfo IDType_ID_TE = { | IDTypeInfo IDType_ID_TE = { | ||||
| .id_code = ID_TE, | .id_code = ID_TE, | ||||
| .id_filter = FILTER_ID_TE, | .id_filter = FILTER_ID_TE, | ||||
| .main_listbase_index = INDEX_ID_TE, | .main_listbase_index = INDEX_ID_TE, | ||||
| .struct_size = sizeof(Tex), | .struct_size = sizeof(Tex), | ||||
| .name = "Texture", | .name = "Texture", | ||||
| .name_plural = "textures", | .name_plural = "textures", | ||||
| .translation_context = BLT_I18NCONTEXT_ID_TEXTURE, | .translation_context = BLT_I18NCONTEXT_ID_TEXTURE, | ||||
| .flags = 0, | .flags = IDTYPE_FLAGS_APPEND_IS_REUSABLE, | ||||
| .init_data = texture_init_data, | .init_data = texture_init_data, | ||||
| .copy_data = texture_copy_data, | .copy_data = texture_copy_data, | ||||
| .free_data = texture_free_data, | .free_data = texture_free_data, | ||||
| .make_local = NULL, | .make_local = NULL, | ||||
| .foreach_id = texture_foreach_id, | .foreach_id = texture_foreach_id, | ||||
| .foreach_cache = NULL, | .foreach_cache = NULL, | ||||
| .owner_get = NULL, | .owner_get = NULL, | ||||
| ▲ Show 20 Lines • Show All 553 Lines • Show Last 20 Lines | |||||