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>2021-02-14 12:58:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-02-14 12:58:04 +0300
commit67c8d97db36b285303abc5dce83b1bc8dc209651 (patch)
treebf1cf63fb1f9ade7205d4e6b73800b79a4f3a3b7 /source/blender/makesdna/DNA_gpencil_types.h
parent07c6a57507e81fe68a7fb3ee23c951fc80f3a042 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/makesdna/DNA_gpencil_types.h')
-rw-r--r--source/blender/makesdna/DNA_gpencil_types.h24
1 files changed, 13 insertions, 11 deletions
diff --git a/source/blender/makesdna/DNA_gpencil_types.h b/source/blender/makesdna/DNA_gpencil_types.h
index e02757c1249..835761bf6e9 100644
--- a/source/blender/makesdna/DNA_gpencil_types.h
+++ b/source/blender/makesdna/DNA_gpencil_types.h
@@ -102,7 +102,7 @@ typedef struct bGPDspoint {
bGPDspoint_Runtime runtime;
} bGPDspoint;
-/* bGPDspoint->flag */
+/** #bGPDspoint.flag */
typedef enum eGPDspoint_Flag {
/* stroke point is selected (for editing) */
GP_SPOINT_SELECT = (1 << 0),
@@ -144,7 +144,7 @@ typedef struct bGPDpalettecolor {
char _pad[6];
} bGPDpalettecolor;
-/* bGPDpalettecolor->flag */
+/** #bGPDpalettecolor.flag */
typedef enum eGPDpalettecolor_Flag {
/* color is active */
/* PC_COLOR_ACTIVE = (1 << 0), */ /* UNUSED */
@@ -171,7 +171,7 @@ typedef struct bGPDpalette {
char _pad[6];
} bGPDpalette;
-/* bGPDpalette->flag */
+/** #bGPDpalette.flag */
typedef enum eGPDpalette_Flag {
/* palette is active */
PL_PALETTE_ACTIVE = (1 << 0),
@@ -319,7 +319,7 @@ typedef struct bGPDstroke {
bGPDstroke_Runtime runtime;
} bGPDstroke;
-/* bGPDstroke->flag */
+/** #bGPDstroke.flag */
typedef enum eGPDstroke_Flag {
/* stroke is in 3d-space */
GP_STROKE_3DSPACE = (1 << 0),
@@ -347,19 +347,19 @@ typedef enum eGPDstroke_Flag {
GP_STROKE_ERASER = (1 << 15),
} eGPDstroke_Flag;
-/* bGPDstroke->caps */
+/** #bGPDstroke.caps */
typedef enum eGPDstroke_Caps {
/* type of extreme */
GP_STROKE_CAP_ROUND = 0,
GP_STROKE_CAP_FLAT = 1,
- /* Keeo last. */
+ /* Keep last. */
GP_STROKE_CAP_MAX,
} GPDstroke_Caps;
/* Arrows ----------------------- */
-/* bGPDataRuntime.arrowstyle */
+/** #bGPDataRuntime.arrowstyle */
typedef enum eGPDstroke_Arrowstyle {
GP_STROKE_ARROWSTYLE_NONE = 0,
GP_STROKE_ARROWSTYLE_SEGMENT = 2,
@@ -553,13 +553,13 @@ typedef enum eGPDlayer_Flag {
GP_LAYER_IS_RULER = (1 << 14),
} eGPDlayer_Flag;
-/* bGPDlayer->onion_flag */
+/** #bGPDlayer.onion_flag */
typedef enum eGPDlayer_OnionFlag {
/* do onion skinning */
GP_LAYER_ONIONSKIN = (1 << 0),
} eGPDlayer_OnionFlag;
-/* layer blend_mode */
+/** #bGPDlayer.blend_mode */
typedef enum eGPLayerBlendModes {
eGplBlendMode_Regular = 0,
eGplBlendMode_HardLight = 1,
@@ -706,8 +706,10 @@ typedef struct bGPdata {
bGPdata_Runtime runtime;
} bGPdata;
-/* bGPdata->flag */
-/* NOTE: A few flags have been deprecated since early 2.5,
+/**
+ * #bGPdata.flag
+ *
+ * NOTE: A few flags have been deprecated since early 2.5,
* since they have been made redundant by interaction
* changes made during the porting process.
*/