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:
authorCampbell Barton <ideasman42@gmail.com>2010-12-06 02:14:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-12-06 02:14:48 +0300
commit9668c29ba00ed830109665ea132b6292cdfe9e2a (patch)
tree45a9c23c9aaa382b10985b9c640b363f54c3f9c9 /source/blender/blenkernel/intern/depsgraph.c
parentb110c7c8f2c5fafa6412e01d21d751a884bfe8b2 (diff)
bpath iterator updates
- loop over sequencer plugin and texture voxel paths. - fix leak in python bpy.utils.blend_path() and use PyUnicode_DecodeFSDefault() to ensure correct paths with different encodings. - operators to make paths absolute & relative now redraw the view.
Diffstat (limited to 'source/blender/blenkernel/intern/depsgraph.c')
-rw-r--r--source/blender/blenkernel/intern/depsgraph.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/depsgraph.c b/source/blender/blenkernel/intern/depsgraph.c
index 97a27405db3..fe6b320d0bd 100644
--- a/source/blender/blenkernel/intern/depsgraph.c
+++ b/source/blender/blenkernel/intern/depsgraph.c
@@ -2456,6 +2456,7 @@ void DAG_id_tag_update(ID *id, short flag)
}
}
+#if 0 // UNUSED
/* recursively descends tree, each node only checked once */
/* node is checked to be of type object */
static int parent_check_node(DagNode *node, int curtime)
@@ -2485,6 +2486,7 @@ static int parent_check_node(DagNode *node, int curtime)
return DAG_WHITE;
}
+#endif
/* ******************* DAG FOR ARMATURE POSE ***************** */