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:
authorLukas Tönne <lukas.toenne@gmail.com>2015-02-26 11:43:33 +0300
committerLukas Tönne <lukas.toenne@gmail.com>2015-03-23 14:22:56 +0300
commitb321526888a1fd696927a530c9be0ec6bf5684d7 (patch)
tree0e952b48061d3eab9a90bbbe6cccd578ef55fab9 /source/blender/blenkernel/intern/bpath.c
parent267d37ce51f53abe323b08334a8ac65eee6a752e (diff)
Replaced point cache in cloth modifiers (also hair) with the new caching
system. Conflicts: source/blender/blenkernel/intern/cloth.c
Diffstat (limited to 'source/blender/blenkernel/intern/bpath.c')
-rw-r--r--source/blender/blenkernel/intern/bpath.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/blenkernel/intern/bpath.c b/source/blender/blenkernel/intern/bpath.c
index 4d40aba67fd..1db58a0e46e 100644
--- a/source/blender/blenkernel/intern/bpath.c
+++ b/source/blender/blenkernel/intern/bpath.c
@@ -484,10 +484,6 @@ void BKE_bpath_traverse_id(Main *bmain, ID *id, BPathVisitor visit_cb, const int
BPATH_TRAVERSE_POINTCACHE(smd->domain->ptcaches[0]);
}
}
- else if (md->type == eModifierType_Cloth) {
- ClothModifierData *clmd = (ClothModifierData *) md;
- BPATH_TRAVERSE_POINTCACHE(clmd->ptcaches);
- }
else if (md->type == eModifierType_Ocean) {
OceanModifierData *omd = (OceanModifierData *) md;
rewrite_path_fixed(omd->cachepath, visit_cb, absbase, bpath_user_data);