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>2010-10-19 05:21:22 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-10-19 05:21:22 +0400
commit106867910ea09fa63b04480dc83b20d67bdb4e09 (patch)
tree9b8c0e2e736f76bb4a97bcc7cb080ebe924a4aee /source/blender/blenkernel/depsgraph_private.h
parentb743454ce1c361e6161da8ae5f840c2befe3a081 (diff)
use unsigned int for all layers.
Diffstat (limited to 'source/blender/blenkernel/depsgraph_private.h')
-rw-r--r--source/blender/blenkernel/depsgraph_private.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/depsgraph_private.h b/source/blender/blenkernel/depsgraph_private.h
index 503ee973be0..0527fe406bc 100644
--- a/source/blender/blenkernel/depsgraph_private.h
+++ b/source/blender/blenkernel/depsgraph_private.h
@@ -64,8 +64,8 @@ typedef struct DagNode
void * ob;
void * first_ancestor;
int ancestor_count;
- int lay; // accumulated layers of its relations + itself
- int scelay; // layers due to being in scene
+ unsigned int lay; // accumulated layers of its relations + itself
+ unsigned int scelay; // layers due to being in scene
int lasttime; // if lasttime != DagForest->time, this node was not evaluated yet for flushing
int BFS_dist; // BFS distance
int DFS_dist; // DFS distance