- 10 Feb, 2016 1 commit
-
-
Sujin Philip authored
Defines a macro "VTK_SMP_<Backend-Name>" and macro VTK_SMP_BACKEND which expands to a string containing the back-end name.
-
- 09 Feb, 2016 5 commits
-
-
7989ffa9 Suppress the last cppcheck dashboard warning Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David Gobbi <david.gobbi@gmail.com> Merge-request: !1202
-
f53711be Force Time Filter Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1180
-
Sean McBride authored
-
Mathieu Westphal authored
-
799a06ed Use specified array to splatter volumes in vtkCheckerboardSplatter. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !1189
-
- 08 Feb, 2016 16 commits
-
-
3df75ed1 Fixed misc cppcheck warnings: 171efbea Fixed cast/alignment warning by cppcheck 22ad855c Update cppcheck suppressions e1836ec3 Fix cppcheck leak warnings Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Berk Geveci <berk.geveci@kitware.com> Merge-request: !1187
-
ce5e2743 Fix an issue with image lic resulting in blank images Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Brad King <brad.king@kitware.com> Merge-request: !1197
-
bd28aa98 ThirdParty: read attributes from the worktree Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Brad King <brad.king@kitware.com> Merge-request: !1199
-
Ben Boeckel authored
This should be done so that any attributes for ignoring certain files when exporting can be appended to the file during the extraction step, but ignored in the actual import. Necessary for importing the gitsetup repository.
-
43476924 IO/Xdmf3/Testing: Updated VToXLoop.py to new API. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Brad King <brad.king@kitware.com> Merge-request: !1198
-
Berk Geveci authored
-
Ken Martin authored
lic for some reason has zero alpha values but valid RGB we change the default copy operator to not discard on zero alpha
-
17d7c1ef Use valid pointer in vtkLookupTable::BuildSpecialColors. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1196
-
David C. Lonie authored
The call to ResizeTableForSpecialColors resizes the Table array, invalidating the pointers 'table' and 'tptr', leading to crashes: https://open.cdash.org/testDetails.php?test=414805862&build=4211477
-
cb596fce Marked image as dirty when set use cache to false Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !1193
-
Sean McBride authored
- warning about not rethrowing - added extra parens - warning about iterator misuse - unused variable
-
Sean McBride authored
Everywhere I search, the last param of MPI_Alloc_mem is void*, so I don’t see why this contortion was even required.
-
Sean McBride authored
-
Sean McBride authored
-
David C. Lonie authored
-
Mathieu Westphal authored
-
- 07 Feb, 2016 1 commit
-
-
8eb13121 vtkProbeFilter now sets active attributes when passing point and cell arrays Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1191
-
- 06 Feb, 2016 1 commit
-
-
b9fc3a81 add missing include to fix compiler error Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Berk Geveci <berk.geveci@kitware.com> Merge-request: !1192
-
- 05 Feb, 2016 9 commits
-
-
Ken Martin authored
need to have algorithm to use std::max apparently
-
Cory Quammen authored
Active attributes were not being set in the output to match the active attributes in the input. This patch fixes that and adds a test to see that attribute activation in point data works as expected.
-
35b29336 Fixed buffer overrun by rewriting Decode() method to be safer Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !1124
-
686d980d ThirdParty: Add license notice to `update-common.sh` Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !1190
-
Brad King authored
Our Git infrastructure scripts use the "Apache License 2.0".
-
e08424da ThirdParty: remove empty directories as well Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Brad King <brad.king@kitware.com> Merge-request: !1163
-
Sean McBride authored
Created new DecodeSafely() method that takes buffer lengths, which means we can be sure not to overrun any buffer. Under ASan, we see that the vtkWebCorePython-TestDataEncoder test does indeed overrun a buffer with the old method. Deprecated the old method.
-
00d9111d Added pragma to disable warning. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !1188
-
Berk Geveci authored
Warning about deprecated methods coming from deprecated methods is unnecessary. Disabled.
-
- 04 Feb, 2016 7 commits
-
-
d94d511d Fix a memory overrun in vtkImagePointDataIterator. 544d6963 Put back the cxx file for vtkImageStencilIterator. e80a8e00 Merge commit '3dae091d' into stencil-iterator-overrun b65f64d3 Test vtkImageStencilIterator with various extents. dcd024ed Merge branch 'stencil-iterator-overrun-6.3' into stencil-iterator-overrun 2a652eb4 Fix a memory overrun in vtkImageStencilIterator. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1167
-
5c536c90 Disabled deprecation warning. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !1182
-
David Gobbi authored
If the stencil extent was smaller than the image extent, then the code incremented the span list pointer upon reaching the first voxel within the stencil extent, even though the pointer was already at the correct location for the first voxel in the stencil extent. The extra increment could lead to a buffer overrun and unpredicable behavior resulting in random crashes.
-
David Gobbi authored
It turns out that this is necessary for explicit template instantiation on Windows. Without it, there are link errors for shared builds.
-
David Gobbi authored
Conflicts: Imaging/Core/vtkImageStencilIterator.txx Resolve by removing Imaging/Core/vtkImageStencilIterator.txx
-
560fc1a6 Enabled and fixed parallel examples. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !1181
-
David Gobbi authored
The program logic is fairly complicated for handling a stencil extent that is different from the image extent, or that is different from the execution extent used by the iterator. Testing was insufficient before.
-