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>2020-03-01 21:53:40 +0300
committerPablo Dobarro <pablodp606@gmail.com>2020-03-01 21:54:31 +0300
commitfc7fdc5c4ed69809bcecc5762957aa42375ca6a2 (patch)
tree6cdc47c6d6f2a5cf96aa13d1b426b14bd0903558 /source/blender/editors/sculpt_paint/paint_cursor.c
parent233158b555156f89cd39d8ea0d42dd24d10956c7 (diff)
Cleanup: Move pose brush to its own file
Reviewed By: brecht Differential Revision: https://developer.blender.org/D6973
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_cursor.c')
-rw-r--r--source/blender/editors/sculpt_paint/paint_cursor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_cursor.c b/source/blender/editors/sculpt_paint/paint_cursor.c
index ff26b347035..a5da577859a 100644
--- a/source/blender/editors/sculpt_paint/paint_cursor.c
+++ b/source/blender/editors/sculpt_paint/paint_cursor.c
@@ -1482,11 +1482,11 @@ static void paint_draw_cursor(bContext *C, int x, int y, void *UNUSED(unused))
/* Free the previous pose brush preview. */
if (ss->pose_ik_chain_preview) {
- sculpt_pose_ik_chain_free(ss->pose_ik_chain_preview);
+ SCULPT_pose_ik_chain_free(ss->pose_ik_chain_preview);
}
/* Generate a new pose brush preview from the current cursor location. */
- ss->pose_ik_chain_preview = sculpt_pose_ik_chain_init(
+ ss->pose_ik_chain_preview = SCULPT_pose_ik_chain_init(
sd, vc.obact, ss, brush, gi.location, rds);
}