Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2020-09-11 12:20:57 +0300
committerJacques Lucke <jacques@blender.org>2020-09-11 12:20:57 +0300
commitff4578a6e7dd0f8254ba91b8b44f4fa88a64c8bb (patch)
treea9d996bc8f45276ebf1c2797806291943b8fa1ee /source/blender/blenloader/intern/writefile.c
parent1b6dd42803df6698b10023ffc660319dab9be502 (diff)
Refactor: move PointCloud .blend I/O to IDTypeInfo callbacks
Diffstat (limited to 'source/blender/blenloader/intern/writefile.c')
-rw-r--r--source/blender/blenloader/intern/writefile.c31
1 files changed, 1 insertions, 30 deletions
diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c
index e8c5e09599c..386cdfc50eb 100644
--- a/source/blender/blenloader/intern/writefile.c
+++ b/source/blender/blenloader/intern/writefile.c
@@ -2104,33 +2104,6 @@ static void write_workspace(BlendWriter *writer, WorkSpace *workspace, const voi
}
}
-static void write_pointcloud(BlendWriter *writer, PointCloud *pointcloud, const void *id_address)
-{
- if (pointcloud->id.us > 0 || BLO_write_is_undo(writer)) {
- CustomDataLayer *players = NULL, players_buff[CD_TEMP_CHUNK_SIZE];
- CustomData_blend_write_prepare(
- &pointcloud->pdata, &players, players_buff, ARRAY_SIZE(players_buff));
-
- /* Write LibData */
- BLO_write_id_struct(writer, PointCloud, id_address, &pointcloud->id);
- BKE_id_blend_write(writer, &pointcloud->id);
-
- /* Direct data */
- CustomData_blend_write(
- writer, &pointcloud->pdata, players, pointcloud->totpoint, CD_MASK_ALL, &pointcloud->id);
-
- BLO_write_pointer_array(writer, pointcloud->totcol, pointcloud->mat);
- if (pointcloud->adt) {
- BKE_animdata_blend_write(writer, pointcloud->adt);
- }
-
- /* Remove temporary data. */
- if (players && players != players_buff) {
- MEM_freeN(players);
- }
- }
-}
-
static void write_volume(BlendWriter *writer, Volume *volume, const void *id_address)
{
if (volume->id.us > 0 || BLO_write_is_undo(writer)) {
@@ -2488,9 +2461,6 @@ static bool write_file_handle(Main *mainvar,
case ID_CF:
write_cachefile(&writer, (CacheFile *)id_buffer, id);
break;
- case ID_PT:
- write_pointcloud(&writer, (PointCloud *)id_buffer, id);
- break;
case ID_VO:
write_volume(&writer, (Volume *)id_buffer, id);
break;
@@ -2523,6 +2493,7 @@ static bool write_file_handle(Main *mainvar,
case ID_TE:
case ID_GD:
case ID_HA:
+ case ID_PT:
/* Do nothing, handled in IDTypeInfo callback. */
break;
case ID_LI: