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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-06-18 15:45:39 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-06-18 16:20:06 +0300
commit7c836ac30a9645f04fdfd0fe1be77e8f63c4141d (patch)
tree88c8379cc9f9de4aa93bbe5a860fdf2af2d1dcab /source/blender/makesdna/DNA_layer_types.h
parent036507967694e7858470fcab6eed8e8acf36d2fc (diff)
Cleanup: simplify some view layer code.
Diffstat (limited to 'source/blender/makesdna/DNA_layer_types.h')
-rw-r--r--source/blender/makesdna/DNA_layer_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_layer_types.h b/source/blender/makesdna/DNA_layer_types.h
index 66a8c3e236d..44bf5be2407 100644
--- a/source/blender/makesdna/DNA_layer_types.h
+++ b/source/blender/makesdna/DNA_layer_types.h
@@ -93,7 +93,7 @@ enum {
BASE_VISIBLED = (1 << 1),
BASE_SELECTABLED = (1 << 2),
BASE_FROMDUPLI = (1 << 3),
- BASE_DIRTY_ENGINE_SETTINGS = (1 << 4),
+ /* BASE_DEPRECATED = (1 << 4), */
BASE_FROM_SET = (1 << 5), /* To be set only by the depsgraph */
BASE_VISIBLE_VIEWPORT = (1 << 6),
BASE_VISIBLE_RENDER = (1 << 7),
@@ -111,7 +111,7 @@ enum {
/* ViewLayer->flag */
enum {
VIEW_LAYER_RENDER = (1 << 0),
- VIEW_LAYER_ENGINE_DIRTY = (1 << 1),
+ /* VIEW_LAYER_DEPRECATED = (1 << 1), */
VIEW_LAYER_FREESTYLE = (1 << 2),
};