- Nov 02, 2018
-
-
64cbd1f1 Increment version to VTK 8.1.2 Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !4842
-
- Oct 29, 2018
-
-
David E. DeMarle authored
Saving off current release before making 8.2.0 branch
-
- Sep 26, 2018
-
-
248bf676 Issue error if vtkAlgorithm::GetInputConnection called on wrong port Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Brad King <brad.king@kitware.com> Merge-request: !4705
-
- Sep 25, 2018
-
-
Sankhesh Jhaveri authored
The original logic was issuing a warning if querying a connection that was outside the range of input connections to the port. This led to warnings in application code that was querying if a particular algorithm had input connections yet. The new logic issues an error if the port in reference, is outside the normal range of input ports for the algorithm but silently returns a nullptr when the connection index is outside the range of connection indices for the port i.e. no more warning when no input is provided.
-
- Sep 13, 2018
-
-
83413750 Added explicit cast to pacify UBSan’s “implicit-integer-truncation” Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David Gobbi <david.gobbi@gmail.com> Merge-request: !4592
-
- Aug 15, 2018
-
-
Sean McBride authored
While building VTK itself, UBSan would warn of an implicit int to char conversion that truncated. The explicit cast prevents UBSan from warning.
-
5dc51e61 Make some orientation marker widget methods virtual Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4590
-
- Aug 14, 2018
-
-
Sankhesh Jhaveri authored
This allows customizations in consumer applications.
-
- Aug 02, 2018
-
-
5dd1dc40 vtkFlyingEdges2D: Properly color multiple isocontour values Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4550
-
92175bff vtkImageBlend bug fix for compound mode Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4551
-
- Aug 01, 2018
-
-
Shreeraj Jadhav authored
vtkImageBlend was not blending images correctly in compound mode for 2-channel (LA) and 1-channel images. Test case has been added to test the compound mode, which was previously missing.
-
-
- Jul 18, 2018
-
-
706f1b39 Fix compilation issue due to Python3.7 API change Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David E. DeMarle <dave.demarle@kitware.com> Merge-request: !4490
-
- Jul 16, 2018
-
-
6a5509af Fix bug where re-enabling seed widget wouldn't move existing seeds Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4496
-
- Jul 12, 2018
-
-
585aeb84 Invoke DeletePointEvent before deleting vtkSeedWidget seed Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Will Schroeder <will.schroeder@kitware.com> Merge-request: !4493
-
Sankhesh Jhaveri authored
-
- Jul 11, 2018
-
-
David Gobbi authored
The PyUnicode_AsUTF8() method returns a "const char *" in Py37.
-
- Jul 06, 2018
-
-
Sankhesh Jhaveri authored
The widget waited for a left click when re-enabled. This leads to an additional seed placed at the site of the existing seed before registering that there is already a seed present.
-
- May 11, 2018
-
-
597cc33a fix ios build issues c4751b8f Increment version to VTK 8.1.1 8fa3de4e comparison was being done for the wrong case 3588d82c Remove vtkProbeOpebGLSupport executable from Mobile 61694e1f Check that context exists before trying to pop context. 3538ec08 Use public instead of protected member functions 373b2a55 fixed case where the array name differed from 98a23692 fix issues with the array calc and string arrays ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4284
-
- May 10, 2018
-
-
Ken Martin authored
The framework was using the vtk version but it was not set yet in the CMakeLists file. Old 32 bit architecture was on by default. Rmeoved. (cherry picked from commit bc4923bd)
-
David E. DeMarle authored
-
Ken Martin authored
It only needs to be checked when the IdType IS 64bit not when it is 32bit (cherry picked from commit f0d637bf)
-
Ken Martin authored
Remove it as it's target is for desktop and it avoids link challenges. (cherry picked from commit 2d6d5772)
-
Francois Budin authored
On some linux drivers (such as nvidia version 384.111 and 387.34) setting the context to zero causes a segfault so check before setting in cases where the destruction may be trying to pop to a zero context. (cherry picked from commit a7988f5c)
-
Steven Hahn authored
(cherry picked from commit 29f8f9ff)
-
Ken Martin authored
the variable name. Shoudl fix dsashboard issues. (cherry picked from commit 7279cebc)
-
Ken Martin authored
The old code did not correctly handle DataObjects that had string arrays in them. It would cause the index to be off after the string array. So it might look liek it worked but the data would be incorrect. Very bad. This fixes PV issue paraview/paraview#12967 (cherry picked from commit 81f882c4)
-
Ken Martin authored
Added an executable that is always built regardless of if testing is on that checkes for OpenGL2 support. This can be used to help diagnose problems when users have a build using VTK that is not working and testing is off as it is by default. (cherry picked from commit 9eba3269)
-
Ken Martin authored
Newer OSX versions no longer support it (cherry picked from commit f8a9eba1)
-
Ken Martin authored
Fix issue where if someone set relative coincident params on a dataaset mapper they had no effect. (cherry picked from commit a565bf8e)
-
Ken Martin authored
Fix an issue with the JPEGReader where it could not handle images larger than 2GB and also consumed more memory than it should. Fix issue in vtkOpenGLTexture when resizing textures larger than 2GB. (cherry picked from commit 79436154)
-
Ken Martin authored
for android superbuilds (cherry picked from commit 01a5b8e5)
-
Ken Martin authored
Path from gitlab Constantine @Butakoff (cherry picked from commit 8fb6f1d5)
-
Ken Martin authored
Add a header file function to handle some of the work in testing opengl support and selecting mesa. Also add a cmake option to turn on delayed loading for opengl. (cherry picked from commit 29607014)
-
Ken Martin authored
When handling a 3d volume it was accessing too far when there was cell data present. (cherry picked from commit 428d603a)
-
fd6b906b 17265: Fix OpenGL2 vtkImageResliceMapper OOB issue Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4076
-
20c61dd6 Backport fix for issue #17211 to release. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4241
-
53f83b43 Clamp tolerance to range [0.0, VTK_DOUBLE_MAX] 21e0e07c Fix logic when tolerance is 0 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4264
-
508c2ada Backport 'reslicemapper-border' to release branch. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4275
-
- May 08, 2018
-
-
David Gobbi authored
When MultiSamples are used in VTK (which is the default on Windows and Linux), a thin border appeared at the edge of the image if the the image pixel values were not zero at the edge. The thin border is the result of the zero 'Background' value of vtkImageReslice. All of the "Background" pixels produced by vtkImageReslice are supposed to map to beyond edges of the polygon used to render the image texture. However, MultiSamples causes the edge to be soft, and the coloring of these background pixels bleeds into the edge of the polygon. The solution is to tell vtkImageReslice to add a bit more edge tolerance when clamping its interpolation coordinates. This moves the 'Background' beyond the edge of the polygon, so that these background pixels no longer bleed into view.
-