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>2012-07-16 11:23:16 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-07-16 11:23:16 +0400
commit60cfbaeb1eb4067a2b545a2e480d8eecb94ec417 (patch)
tree19318bc646dee18e0343a77843681d6b7b53a7d2 /source/blender/makesdna/DNA_mask_types.h
parent8e7aa500219ac71c9f36b0312508fa5f867e3690 (diff)
mask blending modes: lighten/darken/multiply/replace
Diffstat (limited to 'source/blender/makesdna/DNA_mask_types.h')
-rw-r--r--source/blender/makesdna/DNA_mask_types.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_mask_types.h b/source/blender/makesdna/DNA_mask_types.h
index dd9ea508723..f231cba0df7 100644
--- a/source/blender/makesdna/DNA_mask_types.h
+++ b/source/blender/makesdna/DNA_mask_types.h
@@ -168,7 +168,11 @@ enum {
/* masklay->blend */
enum {
MASK_BLEND_ADD = 0,
- MASK_BLEND_SUBTRACT = 1
+ MASK_BLEND_SUBTRACT = 1,
+ MASK_BLEND_LIGHTEN = 2,
+ MASK_BLEND_DARKEN = 3,
+ MASK_BLEND_MUL = 4,
+ MASK_BLEND_REPLACE = 5,
};
/* masklay->blend_flag */