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:
authorNicholas Bishop <nicholasbishop@gmail.com>2012-05-11 00:36:01 +0400
committerNicholas Bishop <nicholasbishop@gmail.com>2012-05-11 00:36:01 +0400
commit415d346db65976a531a44a106b0eb2cdcfc153dc (patch)
treeea4d640df0109096147392478e14a9b383a50990 /source/blender/editors/sculpt_paint/paint_intern.h
parent5cb08c47c5ef793df33f867506d26afdf35d1f3d (diff)
Add support for hiding masked regions.
Add a new mode, PARTIALVIS_MASKED, to the PAINT_OT_hide_show operator.
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_intern.h')
-rw-r--r--source/blender/editors/sculpt_paint/paint_intern.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_intern.h b/source/blender/editors/sculpt_paint/paint_intern.h
index d21dca8b6a4..cf6c6c626d0 100644
--- a/source/blender/editors/sculpt_paint/paint_intern.h
+++ b/source/blender/editors/sculpt_paint/paint_intern.h
@@ -180,7 +180,8 @@ typedef enum {
typedef enum {
PARTIALVIS_INSIDE,
PARTIALVIS_OUTSIDE,
- PARTIALVIS_ALL
+ PARTIALVIS_ALL,
+ PARTIALVIS_MASKED
} PartialVisArea;
void PAINT_OT_hide_show(struct wmOperatorType *ot);