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:
authorPablo Dobarro <pablodp606@gmail.com>2021-03-14 23:15:47 +0300
committerPablo Dobarro <pablodp606@gmail.com>2021-03-14 23:15:47 +0300
commitabda36c0760de280ec2d6c528297cf0b750be84b (patch)
tree03daab5080fd0fd624dd1d2b8545960e7d806f2e /source/blender/editors/sculpt_paint/paint_mask.c
parent476b333a3ef8dff9fa8b5b3b6adff2565c7be840 (diff)
Sculpt: Apply latest clang-format changes to the branch
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_mask.c')
-rw-r--r--source/blender/editors/sculpt_paint/paint_mask.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_mask.c b/source/blender/editors/sculpt_paint/paint_mask.c
index be189ed88a9..a760ec16706 100644
--- a/source/blender/editors/sculpt_paint/paint_mask.c
+++ b/source/blender/editors/sculpt_paint/paint_mask.c
@@ -1531,8 +1531,7 @@ static void project_gesture_tag_fairing_task_cb(void *__restrict userdata,
SCULPT_undo_push_node(sgcontext->vc.obact, node, SCULPT_UNDO_COORDS);
- BKE_pbvh_vertex_iter_begin(sgcontext->ss->pbvh, node, vd, PBVH_ITER_UNIQUE)
- {
+ BKE_pbvh_vertex_iter_begin (sgcontext->ss->pbvh, node, vd, PBVH_ITER_UNIQUE) {
if (!sculpt_gesture_is_vertex_effected(sgcontext, &vd)) {
continue;
}
@@ -1559,8 +1558,7 @@ static void project_gesture_project_fairing_boundary_task_cb(
PBVHNode *node = sgcontext->nodes[i];
PBVHVertexIter vd;
- BKE_pbvh_vertex_iter_begin(sgcontext->ss->pbvh, node, vd, PBVH_ITER_UNIQUE)
- {
+ BKE_pbvh_vertex_iter_begin (sgcontext->ss->pbvh, node, vd, PBVH_ITER_UNIQUE) {
bool project_vertex = false;
bool vertex_fairing_mask = project_operation->fairing_mask[vd.index];