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-16 17:38:47 +0300
committerYimingWu <xp8110@outlook.com>2021-06-16 17:38:47 +0300
commit247abdbf4148843daf469285a6a63ab9cd0aeef9 (patch)
tree78a20d5175b09c83d907aaddef347536bf20aca8 /source/blender/gpencil_modifiers/MOD_gpencil_lineart.h
parentb37093de7b42cf331a4ae5830737d9972d7bb426 (diff)
LineArt: Cached calculation for modifiers in the same stack.
This allows line art to run only once for each modifier stacks, with an option to toggle a specific line art modifier should use cache or re-do their own calculations. Reviewed By: Sebastian Parborg (zeddb), Hans Goudey (HooglyBoogly) Differential Revision: https://developer.blender.org/D11291
Diffstat (limited to 'source/blender/gpencil_modifiers/MOD_gpencil_lineart.h')
-rw-r--r--source/blender/gpencil_modifiers/MOD_gpencil_lineart.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/gpencil_modifiers/MOD_gpencil_lineart.h b/source/blender/gpencil_modifiers/MOD_gpencil_lineart.h
index 685f0cb36cb..7d75ed5804e 100644
--- a/source/blender/gpencil_modifiers/MOD_gpencil_lineart.h
+++ b/source/blender/gpencil_modifiers/MOD_gpencil_lineart.h
@@ -29,3 +29,7 @@ void OBJECT_OT_lineart_clear(struct wmOperatorType *ot);
void OBJECT_OT_lineart_clear_all(struct wmOperatorType *ot);
void WM_operatortypes_lineart(void);
+
+struct LineartCache;
+
+void MOD_lineart_clear_cache(struct LineartCache **lc);