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>2022-01-22 11:13:44 +0300
committerYimingWu <xp8110@outlook.com>2022-01-22 11:13:44 +0300
commit5ae76fae90da795891e7edccc14bccf36f93da54 (patch)
tree17b18e69bb7fcc46fd49151942fbb591e3b6e58b /source/blender/makesdna/DNA_lineart_types.h
parente88d966737c1e4c246f92d21fbe31c4eb702678c (diff)
LineArt: Noise tolerant chaining.
Instead of splitting it at each occlusion change, it tolerates short segments of "zig-zag" occlusion incoherence and doesn't split the chain at these points, thus creating a much smoother result. Reviewed By: Antonio Vazquez (antoniov), Aleš Jelovčan (frogstomp) Differential Revision: https://developer.blender.org/D13851
Diffstat (limited to 'source/blender/makesdna/DNA_lineart_types.h')
-rw-r--r--source/blender/makesdna/DNA_lineart_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_lineart_types.h b/source/blender/makesdna/DNA_lineart_types.h
index d4440592a00..7ef03422c7f 100644
--- a/source/blender/makesdna/DNA_lineart_types.h
+++ b/source/blender/makesdna/DNA_lineart_types.h
@@ -51,6 +51,7 @@ typedef enum eLineartMainFlags {
LRT_USE_CREASE_ON_SHARP_EDGES = (1 << 16),
LRT_USE_CUSTOM_CAMERA = (1 << 17),
LRT_USE_IMAGE_BOUNDARY_TRIMMING = (1 << 20),
+ LRT_CHAIN_PRESERVE_DETAILS = (1 << 22),
} eLineartMainFlags;
typedef enum eLineartEdgeFlag {