[Bf-blender-cvs] [1132d602349] soc-2017-sculpting_brush: Edited minor bug!

decoda noreply at git.blender.org
Thu Jun 22 22:19:49 CEST 2017


Commit: 1132d6023491301ec649c5d0b5bf3ee2d3491361
Author: decoda
Date:   Fri Jun 23 01:49:30 2017 +0530
Branches: soc-2017-sculpting_brush
https://developer.blender.org/rB1132d6023491301ec649c5d0b5bf3ee2d3491361

Edited minor bug!

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

M	source/blender/editors/sculpt_paint/sculpt.c

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

diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index 95b85247f3b..e3e63a98724 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -3342,7 +3342,7 @@ static void topo_init_task_cb(void *userdata, const int n) {
 	BKE_pbvh_vertex_iter_begin(ss->pbvh, data->nodes[n], vd, PBVH_ITER_UNIQUE) {
 		sculpt_orig_vert_data_update(&orig_data, &vd);
 
-		if (sculpt_brush_topo_test(&test, orig_data.co, orig_data.no)) {
+		if (sculpt_brush_topo_test(&test, orig_data.co)) {
 			float *co;
 			co = vd.co;
 			v_index[it + count[0]] = vd.vert_indices[vd.i];




More information about the Bf-blender-cvs mailing list