Skip to content
Snippets Groups Projects
Commit 54e61a70 authored by Sujin Philip's avatar Sujin Philip
Browse files

vtkmSlice now works with uniform grid

This path was previously disabled because there was a bug in VTK-m's flying
edges implementation that caused crashes. The issue has since been resolved.

Addresses: #18856
parent 9ab1b429
No related branches found
No related tags found
No related merge requests found
......@@ -58,9 +58,7 @@ bool vtkmSlice::CanProcessInput(vtkDataSet* input)
auto imageData = vtkImageData::SafeDownCast(input);
if (imageData && imageData->GetDataDimension() == 3)
{
// Currently, vtkm's flying edges implementation crashes for some cases.
// Temporarily disabling this code path
return false;
return true;
}
auto rectilinearGrid = vtkRectilinearGrid::SafeDownCast(input);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment