Skip to content

fix race condition in cell derivatives filter

When running cell derivatives on polydata, there's a race condition due to vtkPolyData::BuildCells being called inside of a SMP for loop. That call is now performed before the for loop.

This is my attempt at fixing #19244 (closed), but not sure that it's the best way to go about it since I don't really know this part of VTK well. Happy to take feedback/suggestions.

Merge request reports