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>2011-09-19 08:53:11 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-19 08:53:11 +0400
commit8835a18e2e8521f88a809b78101efc109bd92848 (patch)
tree4951d062938d9ee27b7224f4617d543133af4802 /source/blender/blenkernel/intern/armature.c
parenta89b253aa62021b9fb8cf5881629b136f1c236da (diff)
refactor wpaint_stroke_update_step not to call expensive functions per-vertex and move args passed to do_weight_paint_vertex into WeightPaintInfo structure since there were far too many args to this function.
Diffstat (limited to 'source/blender/blenkernel/intern/armature.c')
-rw-r--r--source/blender/blenkernel/intern/armature.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/armature.c b/source/blender/blenkernel/intern/armature.c
index b3b7d07f2cf..1149d8eee25 100644
--- a/source/blender/blenkernel/intern/armature.c
+++ b/source/blender/blenkernel/intern/armature.c
@@ -2466,7 +2466,8 @@ void where_is_pose (Scene *scene, Object *ob)
}
-/* Returns total selected vgroups */
+/* Returns total selected vgroups,
+ * wpi.defbase_sel is assumed malloc'd, all values are set */
int get_selected_defgroups(Object *ob, char *dg_selection, int defbase_len)
{
bDeformGroup *defgroup;