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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2005-08-22 01:39:44 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2005-08-22 01:39:44 +0400
commitaf935e597f16d4f45809929c62e4489c279e2bf0 (patch)
tree0e2948e97455b0022569511c89aded41f3b62541 /source/blender/blenlib/BLI_edgehash.h
parentbfc5fedb7972b583bf0e08d93f2759e3243208fb (diff)
Use new BLI_edgehash_* functions in unwrapper.
Diffstat (limited to 'source/blender/blenlib/BLI_edgehash.h')
-rw-r--r--source/blender/blenlib/BLI_edgehash.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_edgehash.h b/source/blender/blenlib/BLI_edgehash.h
index 33ae8a5d5e2..4f8a85b2eea 100644
--- a/source/blender/blenlib/BLI_edgehash.h
+++ b/source/blender/blenlib/BLI_edgehash.h
@@ -66,5 +66,8 @@ int BLI_edgehash_haskey (EdgeHash *eh, int v0, int v1);
/* Return number of keys in hash. */
int BLI_edgehash_size (EdgeHash *eh);
+ /* Remove all edges from hash. */
+void BLI_edgehash_clear (EdgeHash *eh, EdgeHashFreeFP valfreefp);
+
#endif