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-08-11 02:44:33 +0300
committerCampbell Barton <campbell@blender.org>2022-08-11 02:51:19 +0300
commit32c8a28720cba0202fcc1ce679e6b54401d8d6b4 (patch)
treed0ac28c4537ffceaab5389fd32e51614d1f1b6ce /source/blender/makesdna/DNA_node_types.h
parentd68018cf10582dd81df4b61533c3da40e350ed58 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/makesdna/DNA_node_types.h')
-rw-r--r--source/blender/makesdna/DNA_node_types.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index 6388595a8c2..b9161e918c0 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -1838,37 +1838,37 @@ enum {
/* viewer and composite output. */
#define CMP_NODE_OUTPUT_IGNORE_ALPHA 1
-/* Split Viewer Node. Stored in custom2. */
+/** Split Viewer Node. Stored in `custom2`. */
typedef enum CMPNodeSplitViewerAxis {
CMP_NODE_SPLIT_VIEWER_HORIZONTAL = 0,
CMP_NODE_SPLIT_VIEWER_VERTICAL = 1,
} CMPNodeSplitViewerAxis;
-/* Color Balance Node. Stored in custom1. */
+/** Color Balance Node. Stored in `custom1`. */
typedef enum CMPNodeColorBalanceMethod {
CMP_NODE_COLOR_BALANCE_LGG = 0,
CMP_NODE_COLOR_BALANCE_ASC_CDL = 1,
} CMPNodeColorBalanceMethod;
-/* Alpha Convert Node. Stored in custom1. */
+/** Alpha Convert Node. Stored in `custom1`. */
typedef enum CMPNodeAlphaConvertMode {
CMP_NODE_ALPHA_CONVERT_PREMULTIPLY = 0,
CMP_NODE_ALPHA_CONVERT_UNPREMULTIPLY = 1,
} CMPNodeAlphaConvertMode;
-/* Distance Matte Node. Stored in NodeChroma.channel. */
+/** Distance Matte Node. Stored in #NodeChroma.channel. */
typedef enum CMPNodeDistanceMatteColorSpace {
CMP_NODE_DISTANCE_MATTE_COLOR_SPACE_YCCA = 0,
CMP_NODE_DISTANCE_MATTE_COLOR_SPACE_RGBA = 1,
} CMPNodeDistanceMatteColorSpace;
-/* Color Spill Node. Stored in custom2. */
+/** Color Spill Node. Stored in `custom2`. */
typedef enum CMPNodeColorSpillLimitAlgorithm {
CMP_NODE_COLOR_SPILL_LIMIT_ALGORITHM_SINGLE = 0,
CMP_NODE_COLOR_SPILL_LIMIT_ALGORITHM_AVERAGE = 1,
} CMPNodeColorSpillLimitAlgorithm;
-/* Channel Matte Node. Stored in NodeChroma.algorith. */
+/** Channel Matte Node. Stored in #NodeChroma.algorithm. */
typedef enum CMPNodeChannelMatteLimitAlgorithm {
CMP_NODE_CHANNEL_MATTE_LIMIT_ALGORITHM_SINGLE = 0,
CMP_NODE_CHANNEL_MATTE_LIMIT_ALGORITHM_MAX = 1,