From 7ade47befbf81cf02bad818890cc9c26e4bcdf29 Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Thu, 6 Jun 2013 13:46:44 -0400 Subject: progress output in CSG mode had unexpected side effects. Postpone this and do it properly 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 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); -- cgit v0.10.1