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:
authorYimingWu <xp8110@outlook.com>2021-06-25 08:15:25 +0300
committerYimingWu <xp8110@outlook.com>2021-06-25 08:15:25 +0300
commit841df831e89dfc4011c323203c2efb8265dc1878 (patch)
tree6e669d413cbd7de6510a5903102ad9a37e4cdc71 /source/blender/makesdna/DNA_lineart_types.h
parent3d7021b4ec23d79fef361364c35965d9af0f4e5b (diff)
LineArt: More type & related chaining improvements
This patch includes: Floating edge type support, Special chaining option for floating edge, Chaining option for reducing jagged edges when floating edges are involved. Reviewed By: Sebastian Parborg (zeddb) Differential Revision: https://developer.blender.org/D11306
Diffstat (limited to 'source/blender/makesdna/DNA_lineart_types.h')
-rw-r--r--source/blender/makesdna/DNA_lineart_types.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_lineart_types.h b/source/blender/makesdna/DNA_lineart_types.h
index 860a6579bf7..bbb3bd29197 100644
--- a/source/blender/makesdna/DNA_lineart_types.h
+++ b/source/blender/makesdna/DNA_lineart_types.h
@@ -46,6 +46,15 @@ typedef enum eLineartMainFlags {
LRT_ALLOW_OVERLAPPING_EDGES = (1 << 3),
LRT_ALLOW_CLIPPING_BOUNDARIES = (1 << 4),
LRT_REMOVE_DOUBLES = (1 << 5),
+ LRT_FLOATING_AS_CONTOUR = (1 << 6),
+ LRT_GPENCIL_INVERT_SOURCE_VGROUP = (1 << 7),
+ LRT_GPENCIL_MATCH_OUTPUT_VGROUP = (1 << 8),
+ LRT_FILTER_FACE_MARK = (1 << 9),
+ LRT_FILTER_FACE_MARK_INVERT = (1 << 10),
+ LRT_FILTER_FACE_MARK_BOUNDARIES = (1 << 11),
+ LRT_CHAIN_FLOATING_EDGES = (1 << 11),
+ LRT_CHAIN_GEOMETRY_SPACE = (1 << 12),
+ LRT_ALLOW_OVERLAP_EDGE_TYPES = (1 << 13),
} eLineartMainFlags;
typedef enum eLineartEdgeFlag {