spack/var/spack/repos/builtin/packages/vtk-m/disable_flying_edges.patch
Cyrus Harrison c2d8d8acbd
update vtk-m with pinned version for ascent and related packages (#17498)
* add ascent_ver to vtk-m pkg

* vtk-m:: add patches used by ascent
2020-07-13 14:56:45 -07:00

15 lines
558 B
Diff

diff --git a/vtkm/worklet/Contour.h b/vtkm/worklet/Contour.h
index c28c5ec09..70737777f 100644
--- a/vtkm/worklet/Contour.h
+++ b/vtkm/worklet/Contour.h
@@ -46,7 +46,8 @@ struct DeduceCoordType
vtkm::cont::CellSetSingleType<>& result,
Args&&... args) const
{
- result = flying_edges::execute(cells, coords, std::forward<Args>(args)...);
+ result = marching_cells::execute(cells, coords, std::forward<Args>(args)...);
+ //result = flying_edges::execute(cells, coords, std::forward<Args>(args)...);
}
};