- Apr 14, 2016
-
-
Andrew Bauer authored
It seems like a barrier is needed between when the test files are deleted and when they're created after that such that the new files are created after the old files are deleted.
-
- Apr 13, 2016
-
-
Utkarsh Ayachit authored
vtkXMLPMultiBlockDataWriter/vtkXMLCompositeDataWriter now skips empty datasets and treats them same as NULL leaf nodes. Also added a new test to verify the same.
-
Utkarsh Ayachit authored
vtkXMLCompositeDataWriter, instead of duplicating code from vtkXMLDataSetWriter to create the appropriate type of reader, now simply call a new method on vtkXMLDataSetWriter to create the writer for a specific dataset type. Also avoid hardcoding filename extensions, instead using API on the appropriate writer for the dataset type to get the extension string.
-
- Mar 08, 2016
-
-
Code extracted from: https://gitlab.kitware.com/third-party/proj.git at commit 41bdf05361007f8c5186f3df9944d86bb273ed13 (for/vtk).
-
- Feb 02, 2016
-
-
Utkarsh Ayachit authored
Fixes regression introduced by 69c6f7e4. If the pathname is empty, we ended up adding a leading "/" to the filenames instead of treating it as a path relative to current working directory. Fixed that.
-
- Feb 01, 2016
-
-
Utkarsh Ayachit authored
Reusing utility functions from SystemTools to split file name and extract components from it.
-
Utkarsh Ayachit authored
-
Utkarsh Ayachit authored
vtkXMLPDataWriter subclasses relied on the internal writer to request appropriate piece when writing multiple pieces. This makes it tricky to support cases where we want to conditionally write a piece. Hence, refactored the code to explicitly manage looping over pieces using CONTINUE_EXECUTING() mechanism in vtkXMLPDataWriter.
-
- Jan 29, 2016
-
-
Berk Geveci authored
The way algorithms were updated (made to execute) with request meta-data (such as update extent) was very error prone and counter-intuitive. Added new methods to make updating with meta-data easier. I also deprecated a number of methods to set request meta-data. This will encourage developers to migrate to the new API which is less error- prone.
-
- Aug 21, 2015
-
-
- Aug 20, 2015
-
-
Brad King authored
We no longer need this compatibility layer for the compilers we support. Use the following commands to switch to standard header and namespace: git grep -l vtksys/ios/ | xargs sed -i 's|vtksys/ios/||' git grep -l vtksys_ios | xargs sed -i 's|vtksys_ios|std|g'
-
Ben Boeckel authored
-
- Aug 19, 2015
-
-
- Aug 14, 2015
-
-
Andrew Maclean authored
-
- Aug 11, 2015
-
-
Cory Quammen authored
This test was not being executed.
-
- Aug 04, 2015
-
-
Andrew Bauer authored
-
- Aug 03, 2015
-
-
Andrew Bauer authored
-
- Jul 22, 2015
-
-
Bill Lorensen authored
In the early days of VTK, support for stl was not portable. vtksys_stl and vtksys_ios provided a portable implementation of the stl. Now, all of the VTK supported compilers have portable stl implementations. This patch: 1) Replaces the vtksys_ios:: with std::. 2) Replaces the vtksys_stl:: with std::. 3) Removes "using" statements for stl
-
- Jun 03, 2015
-
-
Dan Lipsa authored
Because of a reverted test for empty vector, the type of pieces on processors would always be 0 (vtp).
-
- May 13, 2015
-
-
Andrew Bauer authored
-
- May 12, 2015
-
-
Andrew Bauer authored
-
- Apr 06, 2015
-
-
Sean McBride authored
Also removed some dead code as a consequence, like setting the deallocated pointer to null then to a new address. Also removed setting some ivars to null in dtors.
-
- Dec 18, 2014
-
-
Sean McBride authored
Used the following command: find . \( -iname *.h -and -type f \) -exec perl -pi -w -e 's/__vtk(.*)_h/vtk$1_h/g;' {} \; Fixes many, but not all, clang -Wreserved-id-macro warnings. Change-Id: I694ff053cb204c70e37b261296f496064d91fc07
-
- Aug 29, 2014
-
-
Change-Id: Id5b760ed9b3842284daf45ea1551f2759301efb3
-
- Jul 07, 2014
-
-
Ben Boeckel authored
Change-Id: I4fcd40fdfb1b714c26486562d49715015445ea8f
-
- Jul 03, 2014
-
-
Ben Boeckel authored
The main kits are: vtkCommon vtkFilters vtkIO vtkImaging vtkInteraction vtkOpenGL (required due to a dependency cycle from vtkRenderingOpenGL on vtkImagingHybrid) vtkParallel vtkRendering vtkViews vtkWrapping Modules which deal with a specialization of another module belong to the kit related to the specialization (i.e., FiltersParallel and IOParallelXML both belong to the vtkParallel kit) to avoid circular dependencies that arise when put into the same kit as the "lesser" module. Change-Id: Icae0baa78d62cc0dcce84546541df600d4f311dd
-
- May 21, 2014
-
-
Berk Geveci authored
Change-Id: Id76d3bc545a64675a0820cb1d9b45c61a51efc6a
-
Berk Geveci authored
Change-Id: I7e5c55259159752882c8ae056e08f9bec12b3c02
-
Berk Geveci authored
The XML readers and writers, both parallel and serial, now work with the pipeline changes. Now, all writers work with pieces even though the structured ones can handle asking for a sub- extent. Change-Id: I9f757ba12a3b9fb84e141506dacadad608eb8b99
-