ENH: allow selective disabling of parallel VTK rendering

- in case an individual geometry element has render issues in parallel

- additional debug information
This commit is contained in:
Mark Olesen
2019-06-03 09:46:49 +02:00
committed by Andrew Heather
parent be35426f85
commit e1bd3400ef
10 changed files with 94 additions and 52 deletions

View File

@ -153,8 +153,7 @@ addGeometryFromFile
else
{
DebugInfo
<< " Resolved cloud file "
<< inputFileName_ << endl;
<< " Resolved cloud file " << inputFileName_ << endl;
}
}
else
@ -198,6 +197,12 @@ addGeometryFromFile
fieldSummary colourFieldInfo =
queryFieldSummary(colourFieldName_, polyData);
DebugInfo
<< " Field " << fieldName_ << ' ' << scaleFieldInfo.info() << nl
<< " Field " << colourFieldName_ << ' ' << colourFieldInfo.info()
<< endl;
// No reduction
auto mapper = vtkSmartPointer<vtkPolyDataMapper>::New();