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>2017-10-03 10:43:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-10-03 10:43:18 +0300
commit515e69999e63aab7720e48b0c85233f61facce65 (patch)
tree425d29c58447b6dc205635cc0cbe1d45bc04e5dc /source/blender/editors/sculpt_paint/sculpt_intern.h
parent2b3ff61d805ccbb219e773e1a5c69e02b0c90109 (diff)
Weight Paint: don't set weight w/ average brush
Also use 'const' for brush.
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt_intern.h')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_intern.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt_intern.h b/source/blender/editors/sculpt_paint/sculpt_intern.h
index 425cecb0010..b9b662f4157 100644
--- a/source/blender/editors/sculpt_paint/sculpt_intern.h
+++ b/source/blender/editors/sculpt_paint/sculpt_intern.h
@@ -132,7 +132,7 @@ typedef struct SculptThreadedTaskData {
struct bContext *C;
struct Sculpt *sd;
struct Object *ob;
- struct Brush *brush;
+ const struct Brush *brush;
struct PBVHNode **nodes;
int totnode;
@@ -214,7 +214,7 @@ bool sculpt_brush_test_circle_sq(SculptBrushTest *test, const float co[3]);
bool sculpt_search_sphere_cb(PBVHNode *node, void *data_v);
bool sculpt_search_circle_cb(PBVHNode *node, void *data_v);
float tex_strength(
- struct SculptSession *ss, struct Brush *br,
+ struct SculptSession *ss, const struct Brush *br,
const float point[3],
const float len,
const short vno[3],
@@ -268,7 +268,7 @@ typedef struct StrokeCache {
/* Clean this up! */
struct ViewContext *vc;
- struct Brush *brush;
+ const struct Brush *brush;
float special_rotation;
float grab_delta[3], grab_delta_symmetry[3];