Commit: 4edbd9586f49f448ece0b5e449c0bffde79042f3
Author: Lukas Tönne
Date:   Thu Feb 12 16:21:02 2015 +0100
Branches: alembic_pointcache
https://developer.blender.org/rB4edbd9586f49f448ece0b5e449c0bffde79042f3

Removed unused function.

===================================================================

M       source/blender/blenkernel/BKE_cloth.h
M       source/blender/blenkernel/intern/cloth.c

===================================================================

diff --git a/source/blender/blenkernel/BKE_cloth.h 
b/source/blender/blenkernel/BKE_cloth.h
index beb4f22..1a13d05 100644
--- a/source/blender/blenkernel/BKE_cloth.h
+++ b/source/blender/blenkernel/BKE_cloth.h
@@ -241,9 +241,6 @@ int cloth_uses_vgroup(struct ClothModifierData *clmd);
 void bvhtree_update_from_cloth (struct ClothModifierData *clmd, int moving );
 void bvhselftree_update_from_cloth (struct ClothModifierData *clmd, int moving 
);
 
-// needed for button_object.c
-void cloth_clear_cache (struct Object *ob, struct ClothModifierData *clmd, 
float framenr );
-
 // needed for cloth.c
 int cloth_add_spring (struct ClothModifierData *clmd, unsigned int indexA, 
unsigned int indexB, float restlength, int spring_type);
 
diff --git a/source/blender/blenkernel/intern/cloth.c 
b/source/blender/blenkernel/intern/cloth.c
index 765986c..3ba32f3 100644
--- a/source/blender/blenkernel/intern/cloth.c
+++ b/source/blender/blenkernel/intern/cloth.c
@@ -305,19 +305,6 @@ void bvhselftree_update_from_cloth(ClothModifierData 
*clmd, int moving)
        }
 }
 
-void cloth_clear_cache(Object *ob, ClothModifierData *clmd, float framenr)
-{
-       PTCacheID pid;
-       
-       BKE_ptcache_id_from_cloth(&pid, ob, clmd);
-
-       // don't do anything as long as we're in editmode!
-       if (pid.cache->edit && ob->mode & OB_MODE_PARTICLE_EDIT)
-               return;
-       
-       BKE_ptcache_id_clear(&pid, PTCACHE_CLEAR_AFTER, framenr);
-}
-
 static int do_init_cloth(Object *ob, ClothModifierData *clmd, DerivedMesh 
*result, int framenr)
 {
        PointCache *cache;

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to