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 <campbell@blender.org>2022-01-07 06:22:02 +0300
committerCampbell Barton <campbell@blender.org>2022-01-07 06:28:49 +0300
commitf48164b5ea7f41d639e511aee5d336657ebf3106 (patch)
treeaf405d9294dfe2369bab8295c4ec91832a23becd
parent3d3bc748849834ef74563deb603ab43859cffeeb (diff)
Cleanup: rename sculpt_brushes.c -> sculpt_brush_types.c
This better differentiates sculpt brush types with brush data-blocks, since the same sculpt brush type may be used for many brushes.
-rw-r--r--source/blender/editors/sculpt_paint/CMakeLists.txt2
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_brush_types.c (renamed from source/blender/editors/sculpt_paint/sculpt_brushes.c)0
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_intern.h4
3 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/sculpt_paint/CMakeLists.txt b/source/blender/editors/sculpt_paint/CMakeLists.txt
index 517125f016e..5c8d7a9e9b6 100644
--- a/source/blender/editors/sculpt_paint/CMakeLists.txt
+++ b/source/blender/editors/sculpt_paint/CMakeLists.txt
@@ -59,7 +59,7 @@ set(SRC
sculpt.c
sculpt_automasking.c
sculpt_boundary.c
- sculpt_brushes.c
+ sculpt_brush_types.c
sculpt_cloth.c
sculpt_detail.c
sculpt_dyntopo.c
diff --git a/source/blender/editors/sculpt_paint/sculpt_brushes.c b/source/blender/editors/sculpt_paint/sculpt_brush_types.c
index 8842d93410c..8842d93410c 100644
--- a/source/blender/editors/sculpt_paint/sculpt_brushes.c
+++ b/source/blender/editors/sculpt_paint/sculpt_brush_types.c
diff --git a/source/blender/editors/sculpt_paint/sculpt_intern.h b/source/blender/editors/sculpt_paint/sculpt_intern.h
index cc6044488af..c5abc0b1640 100644
--- a/source/blender/editors/sculpt_paint/sculpt_intern.h
+++ b/source/blender/editors/sculpt_paint/sculpt_intern.h
@@ -1502,7 +1502,7 @@ void SCULPT_OT_dyntopo_detail_size_edit(struct wmOperatorType *ot);
void SCULPT_OT_dynamic_topology_toggle(struct wmOperatorType *ot);
-/* sculpt_brushes.c */
+/* sculpt_brush_types.c */
float SCULPT_clay_thumb_get_stabilized_pressure(struct StrokeCache *cache);
@@ -1604,7 +1604,7 @@ void SCULPT_do_mask_brush(struct Sculpt *sd,
void SCULPT_bmesh_topology_rake(
struct Sculpt *sd, struct Object *ob, struct PBVHNode **nodes, int totnode, float bstrength);
-/* end sculpt_brushes.c */
+/* end sculpt_brush_types.c */
/* sculpt_ops.c */
void SCULPT_OT_brush_stroke(struct wmOperatorType *ot);