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-03-22 06:44:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-22 06:48:36 +0300
commitcb521bd37b26d069cfefec9683312e27c4caae90 (patch)
tree61980445582a9201b587ee33bbecea0256aedbf3 /source/blender/gpencil_modifiers
parentf051146ae64550b65a37bc1cb6f9c60583fa0123 (diff)
Cleanup: spelling, expand on comments
Diffstat (limited to 'source/blender/gpencil_modifiers')
-rw-r--r--source/blender/gpencil_modifiers/intern/lineart/MOD_lineart.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/blender/gpencil_modifiers/intern/lineart/MOD_lineart.h b/source/blender/gpencil_modifiers/intern/lineart/MOD_lineart.h
index 148bbc2c146..1239deb95bb 100644
--- a/source/blender/gpencil_modifiers/intern/lineart/MOD_lineart.h
+++ b/source/blender/gpencil_modifiers/intern/lineart/MOD_lineart.h
@@ -154,7 +154,9 @@ typedef struct LineartEdge {
unsigned char flags;
/**
- * Still need this entry because culled lines will not add to object reln node,
+ * Still need this entry because culled lines will not add to object
+ * #LineartElementLinkNode node (known as `reln` internally).
+ *
* TODO: If really need more savings, we can allocate this in a "extended" way too, but we need
* another bit in flags to be able to show the difference.
*/
@@ -168,7 +170,7 @@ typedef struct LineartLineChain {
/** Calculated before draw command. */
float length;
- /** Used when re-connecting and gp stroke generation. */
+ /** Used when re-connecting and grease-pencil stroke generation. */
char picked;
char level;
@@ -238,7 +240,7 @@ typedef struct LineartRenderBuffer {
unsigned int contour_count;
unsigned int contour_processed;
LineartEdge *contour_managed;
- /* Now changed to linknodes. */
+ /** A single linked list (cast to #LinkNode). */
LineartEdge *contours;
unsigned int intersection_count;