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-04-11 04:41:00 +0300
committerCampbell Barton <campbell@blender.org>2022-04-11 05:03:09 +0300
commit5e47056e8d97e414c9dabacea71fac2bdc7d2818 (patch)
tree110a51be7cfb2f9eff9fd8db093975e29e1a3445 /source/blender/editors/sculpt_paint/sculpt_intern.h
parent1c264ebdc089ea6afef7be4edeb1add4998a1099 (diff)
Cleanup: malformed C-style comment blocks, spelling
- Missing star prefix. - Unnecessary indentation. - Blank line after dot-points (otherwise doxygen merges with the previous dot-point). - Use back-slash for doxygen commands. - Correct spelling.
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt_intern.h')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_intern.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt_intern.h b/source/blender/editors/sculpt_paint/sculpt_intern.h
index 73fc5bd68f3..38905b50c59 100644
--- a/source/blender/editors/sculpt_paint/sculpt_intern.h
+++ b/source/blender/editors/sculpt_paint/sculpt_intern.h
@@ -201,13 +201,11 @@ struct SculptRakeData {
float follow_co[3];
};
-/*
-Generic thread data. The size of this struct
-has gotten a little out of hand; normally we would
-split it up, but it might be better to see if we can't
-eliminate it altogether after moving to C++ (where
-we'll be able to use lambdas).
-*/
+/**
+ * Generic thread data. The size of this struct has gotten a little out of hand;
+ * normally we would split it up, but it might be better to see if we can't eliminate it
+ * altogether after moving to C++ (where we'll be able to use lambdas).
+ */
typedef struct SculptThreadedTaskData {
struct bContext *C;
struct Sculpt *sd;