Skip to content

15998: Fix mismatched new/free in vtkOpenGLImageSliceMapper.

David Gobbi requested to merge dgobbi/vtk:15998-image-slice-mapper-delete into master

By default, the SetArray() method uses free() rather than delete [] to release the memory, which in this case is allocated via new [] in the MakeTextureData() method.

Merge request reports