- May 24, 2017
-
-
Brad King authored
We use `git hash-object` to load the original file into the Git object store. Add the `--no-filters` option to avoid applying any conversion filters that `git add` would apply based on attributes. Otherwise file content may not be preserved, such CRLF newlines when `core.autocrlf` is `true`.
-
- May 15, 2017
-
-
Ben Boeckel authored
ParaView has a header with many nodes; increase the limit.
-
- May 03, 2017
-
-
Jean-Christophe Fillion-Robin authored
This commit simplifies the logic checking if builttool target should be added by adding the variable VTK_COMPILE_TOOLS_IMPORTED.
-
Jean-Christophe Fillion-Robin authored
This commit updates the build systems to allow cross-compiling VTK using toolchain defining CMAKE_CROSSCOMPILING_EMULATOR. It simplifies the cross-compilation removing the need to independently compile the "VTKCompileTools". See https://cmake.org/cmake/help/v3.8/variable/CMAKE_CROSSCOMPILING_EMULATOR.html#variable:CMAKE_CROSSCOMPILING_EMULATOR
-
- Apr 27, 2017
-
-
Sankhesh Jhaveri authored
This allows the python test scripts to work as typical VTK python scripts
-
- Apr 26, 2017
-
-
David Gobbi authored
-
- Apr 20, 2017
-
-
Ben Boeckel authored
This allows the import to merge cleanly.
-
Ben Boeckel authored
-
Ben Boeckel authored
-
- Apr 02, 2017
-
-
David Gobbi authored
The source was searched with "grep -l [^ -~]" to find characters outside of the printable ASCII range 0x20 to 0x7e. The worst offender is the en-dash character, which is visually indistinguishable from the minus character in most code editors. Several tabs were also found, which is surprising since they should be blocked by the commit hooks.
-
- Mar 29, 2017
- Mar 14, 2017
-
-
doxy and misc. typos pt2
-
- Feb 27, 2017
-
-
Brad King authored
-
- Feb 01, 2017
-
-
Cory Quammen authored
Comments at the top of the script file describe what it does and how to use it.
-
- Jan 18, 2017
-
-
Andrew Maclean authored
-
- Jan 17, 2017
-
-
Chris Harris authored
When building with Python 3 and VTK_PYTHON_FULL_THREADSAFE enabled we need to ensure we have the GIL locked before calling PyType_Ready(...)
-
- Jan 16, 2017
-
-
Andrew Maclean authored
-
Robert Maynard authored
-
Michka Popoff authored
This is similar to what is already done in ITK and SimpleITK. The new vtkTargetLinkLibrariesWithDynamicLookup.cmake file is slightly modified copy from ITK/CMake/itkTargetLinkLibrariesWithDynamicLookup.cmake The explanation of what this patch tries to achieve is documented in this file. A new argument is introduced, called OPTIONAL_PYTHON_LINK. When used, the module will be optionally be linked against libpython. In the module.cmake files, most vtkPython dependencies were moved to COMPILE_DEPENDS, so that libpython is not added to the target_link_libraries() call. The vtkPython is explicitely linked against the python libraries, as this is a python executable. Also, the find_package calls for the PythonLibs were made optional when possible. The XDMF3 project was not updated, this will need to be done separately if weak linking is wished for that project. Fixes: #16068
-
- Dec 19, 2016
-
-
T.J. Corona authored
-
- Dec 05, 2016
-
-
Sean McBride authored
VTK has several Borland-specific workarounds, but I’m fairly sure they are all for ancient compilers. So this changes makes them all apply to older-than-newest versions only. This will make it easier to remove them entirely one day, as currently it’s impossible to know if they are needed for all, old, or new versions.
-
- Nov 26, 2016
-
-
Bill Lorensen authored
Recent versions of lcov generate messages: geninfo: Argument "=====" isn't numeric Also, suppress /usr/include/ warnings.
-
- Oct 26, 2016
-
-
Mario Emmenlauer authored
-
- Sep 24, 2016
-
-
David Gobbi authored
-
- Sep 23, 2016
-
-
David DeMarle authored
generated via: cd $VTKSRC perl Utilities/Doxygen/doc_header2doxygen.pl --to ~/tmp/vtkheaders . cp -r ~/tmp/vtkheaders/* .
-
Dave DeMarle authored
move to entirely this style: /** * something */ meanwhile, avoid tabs and end of line whitespace and cut down on excessive doxygen groups resulting from multiline but single item declarations
-
Dave DeMarle authored
keep it around though, will be handy for other projects
-
- Sep 12, 2016
-
-
Haocheng LIU authored
The current dependency relationship in vtk is unclear and misleading. This MR tries to rewrite them based on header files inclusion of headers and source files in each module. Corner cases are considered and modules are sorted in alphabetical order to facilitate future reference. See details in my gitlab python based script project. In future we can continue using this script to clean the VTK Dependency easily from time to time.
-
- Aug 24, 2016
-
-
David Gobbi authored
One of the VTK dashboards had problems evaluating PYTHON_VERSION, so stick with PYTHON_MAJOR_VERSION and PYTHON_MINOR_VERSION instead. Also, change SEND_ERROR to FATAL_ERROR.
-
- Aug 23, 2016
-
-
David Gobbi authored
We will be removing support for Python 2.6 and Python 3.2 in the near future, so add deprecation warnings for these. For older versions of Python, generate an error. This deprecation is due in part to the fact that WebPython now requires Python 2.7 or 3.3+.
-
- Jul 11, 2016
-
-
Sean McBride authored
There wasn't much left. Notably, don't #define vtkstd at all anymore.
-
- Jul 08, 2016
-
-
Cory Quammen authored
This reverts commit 772cc086. Needs more work to build with VTK_KITS_ENABLED and to build with ParaView.
-
- Jul 07, 2016
-
-
Sean McBride authored
vtk(.*)\(const vtk\1&\);\s*//\s*Not implemented[\.]* to vtk\1(const vtk\1\&) VTK_DELETE_FUNCTION; vtk(.*)\(const vtk\1 &\);\s*//\s*Not implemented[\.]* to vtk\1(const vtk\1 \&) VTK_DELETE_FUNCTION; vtk(.*)\( const vtk\1 & \);\s*//\s*Not implemented[\.]* to vtk\1( const vtk\1 \& ) VTK_DELETE_FUNCTION; vtk(.*)\( const vtk\1& \);\s*//\s*Not implemented[\.]* to vtk\1( const vtk\1\& ) VTK_DELETE_FUNCTION; vtk(.*) \(const vtk\1&\);\s*//\s*Not implemented[\.]* to vtk\1 (const vtk\1\&) VTK_DELETE_FUNCTION;
-
Sean McBride authored
(operator\s*=.*);\s*//\s*Not\s*implemented[\.]* to \1 VTK_DELETE_FUNCTION; After that, this finds basically nothing: operator.*implemented then manually reverted changed files in VPIC and KWSys folders.
-
Sean McBride authored
These files will eventually need vtkConfigure.h for eventual VTK_DELETE_FUNCTION usage.
-
David Gobbi authored
Making the code a little less obfuscated.
-
- Jul 06, 2016
-
-
David Gobbi authored
Even though this utility is not designed to convert K&R braces to Allman braces, it should indent their closing braces the same way.
-
- Jul 05, 2016
-
-
David Gobbi authored
This fixes some tricky issues with how VTK uses macros, specifically the use of code blocks within the argument of vtkTemplateMacro(), and it also tweaks the handling of case labels (yet again).
-
- Jul 03, 2016
-
-
David Gobbi authored
-