diff options
author | Marius Kintel <marius@kintel.net> | 2013-06-06 17:46:44 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-06-06 17:46:44 (GMT) |
commit | 7ade47befbf81cf02bad818890cc9c26e4bcdf29 (patch) | |
tree | 6637b0995576e6385685e0b8182214ff165d1e22 | |
parent | 5ceb9ee244f70b43ab14f692299cdaeb41d9f9a5 (diff) |
progress output in CSG mode had unexpected side effects. Postpone this and do it properly
-rw-r--r-- | src/CSGTermEvaluator.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/CSGTermEvaluator.cc b/src/CSGTermEvaluator.cc index 71cf149..a6b654c 100644 --- a/src/CSGTermEvaluator.cc +++ b/src/CSGTermEvaluator.cc @@ -115,7 +115,6 @@ Response CSGTermEvaluator::visit(State &state, const AbstractPolyNode &node) if (ps) { t1 = evaluate_csg_term_from_ps(state, this->highlights, this->background, ps, node.modinst, node); - node.progress_report(); } } this->stored_term[node.index()] = t1; @@ -179,7 +178,6 @@ Response CSGTermEvaluator::visit(State &state, const RenderNode &node) shared_ptr<PolySet> ps; if (this->psevaluator) { ps = this->psevaluator->getPolySet(node, true); - node.progress_report(); } if (ps) { t1 = evaluate_csg_term_from_ps(state, this->highlights, this->background, @@ -203,7 +201,6 @@ Response CSGTermEvaluator::visit(State &state, const CgaladvNode &node) if (ps) { t1 = evaluate_csg_term_from_ps(state, this->highlights, this->background, ps, node.modinst, node); - node.progress_report(); } this->stored_term[node.index()] = t1; addToParent(state, node); |