- 02 Mar, 2016 6 commits
-
-
David Gobbi authored
aadaa039 Restore C89 support after fixing cppcheck warning Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David Gobbi <david.gobbi@gmail.com> Merge-request: !1299
-
Sean McBride authored
Variables must be declared early in C89.
-
David Gobbi authored
c65105cc Remove the default from vtkAlgorithm::UpdateExtent(). 840d2f59 Fixed incorrect method signatures in 7.1 change notes Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Sean McBride <sean@rogue-research.com> Merge-request: !1297
-
David Gobbi authored
The default NULL value for UpdateExtent(const int extent[6]) was a typo.
-
David Gobbi authored
0dc76543 Fix cppcheck warning "index used before limits check" Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1293
-
David Gobbi authored
-
- 01 Mar, 2016 5 commits
-
-
Sean McBride authored
-
Andrew Bauer authored
dc87766b Fixing compiler warnings Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1289
-
Andrew Bauer authored
-
David Gobbi authored
67eb4fc5 15995: Implement C++ templates as Python modules. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David E DeMarle <dave.demarle@kitware.com> Merge-request: !1218
-
Sean McBride authored
44fbfe3b Misc cleanup looking at cppcheck issues 5b2b51fe Fixed most ‘passedByValue’ cppcheck warnings fb7a3909 Fixed many 'redundantAssignment' cppcheck warnings 6eedef44 Fixed ‘clarifyCalculation’ cppcheck warnings Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Reviewed-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !1273
-
- 29 Feb, 2016 11 commits
-
-
Aashish Chaudhary authored
0e5ae6c5 Must have modules are avformat and avcodec Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Ken Martin <ken.martin@kitware.com> Reviewed-by:
Brad King <brad.king@kitware.com> Merge-request: !1281
-
Bill Lorensen authored
ccc50fe9 ENH: Bump WikiExamples Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1287
-
Bill Lorensen authored
-
David Gobbi authored
a4d1bea8 If a SetInterpolator() is used, then clamp the results. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Sean McBride <sean@rogue-research.com> Reviewed-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !1279
-
Bill Lorensen authored
cc96bd93 BUG: OpenGLPolyDataMapper2D regression Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !1284
-
David Gobbi authored
a344f7f9 vtkImageMapper3D: add missing space in error message Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David Gobbi <david.gobbi@gmail.com> Merge-request: !1286
-
Bill Lorensen authored
OpenGLPolyDataMapper2D for OpenGL was clipping the z components between -1,0 or 0,1. The logic is a bit different in OpenGL2 versus OpenGL. I believe it has somethiong to do with where the transformations are performed. I'm pretty sure z-clipping should not apply for 2D mappers. A new test was added that has polydata with a large z range. NOTE: To see the bug, download this patch and revert to the original mapper: git checkout master Rendering/OpenGL2 and ctest -R TestLegendBoxActor2
-
Waldir Pimenta authored
-
Ken Martin authored
a1dee02e fix progress reporting on writing XMLMultiBlockDataSets Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Berk Geveci <berk.geveci@kitware.com> Merge-request: !1285
-
Bill Lorensen authored
e1ad3166 ENH: Change default TEST_LABELS for module Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Reviewed-by:
Brad King <brad.king@kitware.com> Merge-request: !1283
-
Ken Martin authored
The progress range needed to be set outside the loop that calls WriteNonCompositData. The old code was reporting 0 to 1.0 progress for each block.
-
- 27 Feb, 2016 5 commits
-
-
Bill Lorensen authored
Currently, the TEST_LABELS for a vtk module defaults to the empty string. Currently, only one VTK module sets TEST_LABELS in its module.cmake file (vtkWebCore). This patch sets the default to the name of the module. This faciliates testing of individuyal modules. For example, when using the testing script vtk_common.cmake, one can set set(MODULE "vtkCommonCore") set(CTEST_TEST_ARGS INCLUDE_LABEL ${MODULE}) and the testing script will only test those tests which have the label vtkCommponCore. This is especially useful for remote modules. Rather than running all of vtk's tests, a test script would just run the remote module's tests.
-
Will Schroeder authored
aa891852 Fixed test timeout 269aa961 Accelerated and thread-capable attribute data processing Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1282
-
Will Schroeder authored
-
Will Schroeder authored
-
Aashish Chaudhary authored
All other modules are considered optinal
-
- 26 Feb, 2016 5 commits
-
-
Ken Martin authored
fad05318 make OSX use the generic superclass SupportsOpenGL Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Berk Geveci <berk.geveci@kitware.com> Merge-request: !1280
-
Ken Martin authored
fbff2fe7 fix for props that have no bounds with EDL Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Berk Geveci <berk.geveci@kitware.com> Merge-request: !1275
-
David Gobbi authored
This fixes a numerical overflow issue. The code skips the clamping step for linear and NN interpolation for better performance, but for high-order interpolation, it needs to clamp the result to the range of the output scalar type. A bug caused it to incorrectly skip the clamping if a high order interpolator was set with SetInterpolator(), but only for the "PermuteExecute" code path that is used for rotations that are precise multiples of 90 degrees.
-
Ken Martin authored
try to reove special subclass version of SupportsOpenGL as the superclass one should work.
-
T.J. Corona authored
ba00d36a Enable/disable clipping planes in vtkOpenGLGlyph3DMapper Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !963
-
- 25 Feb, 2016 8 commits
-
-
Andrew Bauer authored
5c1017a2 Fixing Intel compile error. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Reviewed-by:
Dan Lipsa <dan.lipsa@kitware.com> Merge-request: !1276
-
David Gobbi authored
6f62b2d5 Move re-indentation utility to the Maintenance dir. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David E DeMarle <dave.demarle@kitware.com> Merge-request: !1278
-
Joachim Pouderoux authored
582187de Fix the functional bag plot extraction filter. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Merge-request: !1110
-
David Gobbi authored
This is a python script that changes the Whitesmiths indentation style to the Allman indentation style that is currently more popular. This script will only change the brace indentation, it will not change the code in any other way, so "git blame" results will be mostly unchanged after re-styling.
-
Utkarsh Ayachit authored
6c456e0f Merge branch 'release' into HEAD Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David E DeMarle <dave.demarle@kitware.com> Merge-request: !1274
-
Joachim Pouderoux authored
-
Andrew Bauer authored
-
Andrew Bauer authored
3ffe6bfb Improving finding libGLdispatch.so.0 for EGL Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Dan Lipsa <dan.lipsa@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !1268
-