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>2019-02-28 04:15:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-28 04:30:56 +0300
commit3d4d7b97c27e3ff2820ddf210736ca90cae05f85 (patch)
tree4ee989d65a906385537646d8475a2bec1332a1ea /source/blender/depsgraph
parentc51516c3fbf9c5f379f73ca10cdce3fb4c63a017 (diff)
Cleanup: style
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder.cc b/source/blender/depsgraph/intern/builder/deg_builder.cc
index 5520282db27..f5cf433aae8 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder.cc
@@ -58,7 +58,8 @@ DepsgraphBuilder::DepsgraphBuilder(Main *bmain, Depsgraph *graph)
graph_(graph) {
}
-bool DepsgraphBuilder::needPullBaseIntoGraph(struct Base *base) {
+bool DepsgraphBuilder::needPullBaseIntoGraph(struct Base *base)
+{
const int base_flag = (graph_->mode == DAG_EVAL_VIEWPORT) ?
BASE_ENABLED_VIEWPORT : BASE_ENABLED_RENDER;
if (base->flag & base_flag) {