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>2019-07-07 08:38:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-07-07 08:38:41 +0300
commitcd6b49f995fdca5240a9b97fa99b4dd669a047ea (patch)
tree5bdef2750238555e149891e6278a27e9ca5b26ef /source/blender/blenkernel/BKE_gpencil_modifier.h
parenta3e2076bc4f7330188fbb1b3338c9235a7b0bc96 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/blenkernel/BKE_gpencil_modifier.h')
-rw-r--r--source/blender/blenkernel/BKE_gpencil_modifier.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/source/blender/blenkernel/BKE_gpencil_modifier.h b/source/blender/blenkernel/BKE_gpencil_modifier.h
index d616c74520a..1f2f8ee57bf 100644
--- a/source/blender/blenkernel/BKE_gpencil_modifier.h
+++ b/source/blender/blenkernel/BKE_gpencil_modifier.h
@@ -52,10 +52,10 @@ struct bGPDstroke;
((((_md)->mode & eGpencilModifierMode_Editmode) == 0) && (_is_edit))
typedef enum {
- /* Should not be used, only for None modifier type */
+ /** Should not be used, only for None modifier type. */
eGpencilModifierTypeType_None,
- /* grease pencil modifiers */
+ /** Grease pencil modifiers. */
eGpencilModifierTypeType_Gpencil,
} GpencilModifierTypeType;
@@ -63,25 +63,26 @@ typedef enum {
eGpencilModifierTypeFlag_SupportsMapping = (1 << 0),
eGpencilModifierTypeFlag_SupportsEditmode = (1 << 1),
- /* For modifiers that support editmode this determines if the
- * modifier should be enabled by default in editmode. This should
+ /**
+ * For modifiers that support edit-mode this determines if the
+ * modifier should be enabled by default in edit-mode. This should
* only be used by modifiers that are relatively speedy and
- * also generally used in editmode, otherwise let the user enable
- * it by hand.
+ * also generally used in edit-mode, otherwise let the user enable it by hand.
*/
eGpencilModifierTypeFlag_EnableInEditmode = (1 << 2),
- /* For modifiers that require original data and so cannot
- * be placed after any non-deformative modifier.
+ /**
+ * For modifiers that require original data and so cannot
+ * be placed after any non-deform modifier.
*/
eGpencilModifierTypeFlag_RequiresOriginalData = (1 << 3),
- /* max one per type */
+ /** Max one per type. */
eGpencilModifierTypeFlag_Single = (1 << 4),
- /* can't be added manually by user */
+ /** Can't be added manually by user. */
eGpencilModifierTypeFlag_NoUserAdd = (1 << 5),
- /* can't be applied */
+ /** Can't be applied. */
eGpencilModifierTypeFlag_NoApply = (1 << 6),
} GpencilModifierTypeFlag;