- May 19, 2017
-
-
Scott Wittenburg authored
-
Sebastien Jourdain authored
-
- May 18, 2017
-
-
Scott Wittenburg authored
-
Scott Wittenburg authored
-
- May 17, 2017
-
-
Scott Wittenburg authored
-
- May 09, 2017
-
-
Scott Wittenburg authored
-
- Apr 28, 2017
-
-
Scott Wittenburg authored
-
- Apr 27, 2017
-
-
Sankhesh Jhaveri authored
-
- Apr 26, 2017
-
-
Utkarsh Ayachit authored
`dashlin1` doesn't provide a mutlisampling capable context, hence added a baseline without multisampling.
-
- Apr 25, 2017
-
-
Cory Quammen authored
* Add required comment justifying include in header * Remove unneeded const qualifier
-
Ken Martin authored
mismatched signatures
-
Scott Wittenburg authored
-
- Apr 14, 2017
-
-
Scott Wittenburg authored
-
- Apr 13, 2017
-
-
Sean McBride authored
Types of warnings: - mismatch between parameters names in declaration vs definition - make certain parameters references, or const references - checking array index after its use - prefer preincrement - change return type of operator= There are some very minor API chages here (const/reference).
-
Sebastien Jourdain authored
-
Scott Wittenburg authored
-
- Apr 07, 2017
-
-
Scott Wittenburg authored
This change allows us to keep track of vtk objects when exporting a scene description. It relies on the fact that the memory address of objects does not change frequently, if ever.
-
- Apr 05, 2017
-
-
Chris Harris authored
-
- Mar 31, 2017
-
-
Aron Helser authored
All python 2 specific files now work in python 3, so move them to the common web/Python module and remove the Python2 module. Also fix a few uses of .has_key(), which has been removed in python 3.
-
Aron Helser authored
Changes include fixing xrange, and str type differences, including required types for autobahn and twisted.
-
- Mar 14, 2017
-
-
doxy and misc. typos pt2
-
- Feb 28, 2017
-
-
Chris Harris authored
-
- Feb 08, 2017
-
-
Sebastien Jourdain authored
-
- Feb 01, 2017
-
-
Cory Quammen authored
-
- Jan 16, 2017
-
-
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
-
- Nov 22, 2016
-
-
Sebastien Jourdain authored
Prevent error when reseting the active view of the image stream specially when no client has connected yet or requested the active view.
-
- Nov 10, 2016
-
-
-
-
Sebastien Jourdain authored
-
- Nov 03, 2016
-
-
Sebastien Jourdain authored
-
- Oct 24, 2016
-
-
Sebastien Jourdain authored
-
- Sep 23, 2016
-
-
This commit reindents the code with the following utility: Utilities/Maintenance/vtk-reindent-code.py This utility changes the positions of the braces so that they are no longer indented relative to the code block they reside in. The bash command line used was the following: for d in Charts Common Deprecated Domains Examples Filters GUISupport \ Geovis IO Imaging Infovis Interaction Parallel Rendering \ Testing Views Web Wrapping; do for e in cxx cxx.in txx txx.in hxx hxx.in h h.in c c.in; do find "${d}" -name "*.${e}" -exec \ python Utilities/Maintenance/vtk_reindent_code.py {} + done done
-
David DeMarle authored
generated via: cd $VTKSRC perl Utilities/Doxygen/doc_header2doxygen.pl --to ~/tmp/vtkheaders . cp -r ~/tmp/vtkheaders/* .
-
- 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.
-
- Sep 08, 2016
-
-
Cory Quammen authored
Warnings were about casts truncating pointer values. Fixes 16834.
-
- Aug 29, 2016
-
-
Sebastien Jourdain authored
-
- Aug 26, 2016
-
-
Shawn Waldon authored
-
- Aug 23, 2016
-
-
Shawn Waldon authored
-
- Aug 19, 2016
-
-
Bill Lorensen authored
This is a fix for: vtk/vtk#14310 Windows applications that run for a long time report that rendered objects do not change. This is because the modified time on a Windows system is 32 bits. This causes overflows that defeat the modified time mechanism. This patch defines a new type, vtkMTimeType that is 64 unsigned integer regardless of the architecture. A mechanism to provide backward compatibility is introduced. The preprocessor define "VTK_HAS_MTIME_TYPE" can be used in applications that must build against VTK versions that use the "unsigned long" type for MTime's. Methodology used to find MTime occurences: 1) Identify files as follows: git grep "unsigned long" | grep ime | cut -d":" -f1,1 | sort | uniq 2) Hand edit each of those files replacing "unsigned long" with "vtkMTimeType" where appropriate. 3) Temporarily change typedef for vtkMTimeType to "double" to detect missing conversions
-
- Aug 01, 2016
-
-
Sebastien Jourdain authored
-