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:
authorMartin Poirier <theeth@yahoo.com>2008-07-16 01:07:13 +0400
committerMartin Poirier <theeth@yahoo.com>2008-07-16 01:07:13 +0400
commitdb5a83d083c1517316ff94a011c4a21e0ada7d34 (patch)
tree57f4c45185a2c8ac998134c820c083352505ec60 /source/blender/blenlib/BLI_graph.h
parent08039ef38fa6d39f756860032659cc3678137ced (diff)
More merging goodness
fix adjacency list inline instead of having to rebuild fully reweight joined graphs properly
Diffstat (limited to 'source/blender/blenlib/BLI_graph.h')
-rw-r--r--source/blender/blenlib/BLI_graph.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_graph.h b/source/blender/blenlib/BLI_graph.h
index dba02932e02..be5d1f5d10c 100644
--- a/source/blender/blenlib/BLI_graph.h
+++ b/source/blender/blenlib/BLI_graph.h
@@ -76,6 +76,7 @@ void BLI_flagArcs(BGraph *graph, int flag);
int BLI_hasAdjacencyList(BGraph *rg);
void BLI_buildAdjacencyList(BGraph *rg);
void BLI_rebuildAdjacencyList(BGraph* rg);
+void BLI_rebuildAdjacencyListForNode(BGraph* rg, BNode *node);
void BLI_freeAdjacencyList(BGraph *rg);
int BLI_FlagSubgraphs(BGraph *graph);