- Nov 13, 2019
-
-
Includes a few changes related to extraneous whitespace fixes and deduplication of headers as well.
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
-
7aab4875 Update all of Filters/Extraction/ to use vtkArrayDispatch Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Allison Vacanti <allison.vacanti@kitware.com> Merge-request: !6174
-
- Nov 12, 2019
-
-
c3f2ea43 vtk-config: provide compatibility for VTK_USE_FILE 126918f6 vtk-config: handle component deprecation more gracefully Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !6180
-
bdafa5c1 avoid building static importer module 428eee4a cleanup `vtk.py` for Python 3.5+ 403fa5cb python: support zip packages in static builds ae328f2d support zip modules Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !6177
-
Ben Boeckel authored
Fixes: #17725
-
Robert Maynard authored
-
be39b251 vtkCellArray redesign to enable random access. 642cb367 Temporarily change remote module URL pending MR. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Andrew Maclean <andrew.amaclean@gmail.com> Merge-request: !5682
-
abc51be1 vtkGenerateGlobalIds: fix conversion warning Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !6183
-
64f02666 vtkModuleWrapPython: follow documentation conventions for array args Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !6181
-
Utkarsh Ayachit authored
-
Utkarsh Ayachit authored
The module used to import Python wrapping in static builds was being generated even for shared builds. Fixed that.
-
Ben Boeckel authored
-
Ben Boeckel authored
If a version less than 8.90 is requested, ignore the old names; they're there for compatibility. If at least 8.90 is requested error on the old names. If unspecified, warn about the deprecation.
-
Utkarsh Ayachit authored
Cleaning up `vtk.py` to use `importlib.import_module` instead of relying on `importlib.util`. The implementation using `importlib.util` was not robust enought to work with zipped modules.
-
Utkarsh Ayachit authored
VTK now builds a zipped archive for all VTK packages/modules for static builds. This allows static builds of VTK to minimize disk access for reading python modules -- an important requirement for HPC use-cases.
-
Allison Vacanti authored
See the vtkCellArray.h class docs for details.
-
- Nov 11, 2019
-
-
Allison Vacanti authored
The SplineDrivenImageSlicer remote module needs to accept MR#2 before it will compile with the new vtkCellArray API. Once merged, the url changes here should be reverted.
-
Utkarsh Ayachit authored
vtkPythonInterpreter now supports `_vtk.zip` to use as the container for VTK's python modules/packages.
-
-
3643774c libLAS: find Boost when finding libLAS Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !6176
-
ec9bb829 Expose VTK-m ImageConnectivity Filter Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Sebastien Jourdain <sebastien.jourdain@kitware.com> Merge-request: !6019
-
Ben Boeckel authored
If building with Boost 1.70 and newer, Boost uses imported targets. We need to find Boost so that libLAS' usage of the imported targets works as well. (cherry picked from commit 6b8e3db8)
-
d4721aa8 Fix warning in new GDALookup code for 32-bit IdType builds. 4284edfb Minor typo/markup fixes in DataArrayRange implementation. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6175
-
Allison Vacanti authored
-
Allison Vacanti authored
-
Robert Maynard authored
-
- Nov 10, 2019
-
-
979dd604 Replaced vtkAtomicTypes.h by using std::atomic Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !6038
-
- Nov 09, 2019
-
-
0ba48c4e Fix unneeded "extern" declaration in vtkWrapJava 9e408e90 Change macro to function to avoid export issues 1880a022 Add export macros for the WrappingTools API e0238253 Wrapping tools no longer need vtkType.h Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !6173
-
b3fe3a26 Fixed index values for multicomponent array add33ea1 Fixed iterating over components and inadvertent cast to int 6228530d Stable value lookup for vtkGenericDataArray Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Allison Vacanti <allison.vacanti@kitware.com> Merge-request: !6169
-
- Nov 08, 2019
-
-
David Gobbi authored
This "extern" declaration is legacy and hasn't been necessary for at least ten years.
-
David Gobbi authored
Exporting a function is easier than exporting a variable.
-
beb6307e Clean up some of the range documentation. a3429edc Fix unused variable warnings. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !6172
-
David Gobbi authored
This library was originally forced to be static to ensure that the wrapping executables (vtkWrapPython, vtkWrapHierarchy, etc) were statically linked. The idea was that since the wrapping tools are used prior to installation, static linking was more robust, since otherwise they would have to rely on a baked-in RPATH. However, these worries were unfounded, and it is simpler and more consistent for BUILD_SHARED to control whether WrappingTools is static.
-
Allison Vacanti authored
Clang is warning about temporary lifetime extension. The examples have been reworked to avoid using this feature.
-
David Gobbi authored
The inclusion of this header file was removed Jan 2019 (1a51e69f)
-
Allison Vacanti authored
Compilers are starting to warn when an object is instantiated and only used to call static methods, such as the dispatchers. This patch cleans up some of these warnings and updates documentation. The TestScaledSOADataArrayDispatchers test has been removed, as it's redundant wrt the TestArrayDispatchers test (it doesn't test ScaledSOA functionality, just dispatching).
-
Andreas Buykx authored
-