- Aug 27, 2015
-
-
Ken Martin authored
Made vtkFrameBufferObject be built for ES 2 as ES 2 does support it. This required a few changes. Made a number of fixes to the Android/IOS super build process. Fixed the install prefix to be pushed down to the subbuilds. Made a number of top level setting cached in the sub builds because they are cached there already and need to be overriden in the superbuild. Otherwise top level changes did not propagate down.
-
- Aug 25, 2015
-
-
dab78865 vtkOpenGLPolyDataMapper: warn about broken gl_PrimitiveID once Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !568
-
65a09b2c ENH: refs #14978 - Added virtual method to return vtkSelection pointer Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !575
-
8aead085 Add tests for encoded strings in python. 4f450d14 For Py3k, return bytes for non-utf8 C++ strings. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !572
-
3459fd91 Include <sstream> header via angle brackets Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !576
-
0be93d40 Remove use of KWSys cstddef compatiblilty header d33ae4dc Remove use of KWSys auto_ptr 88e3b197 Remove use of KWSys String.hxx header Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !574
-
- Aug 24, 2015
-
-
David Gobbi authored
-
f9b4ba9b Cleaned up header docs, refined keypress callbacks Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !563
-
ab3e753f Removed leftover performance testing code f433a4bf Cleaned up shadowed template parameter 799a1481 Threaded and templated elevation filters Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Berk Geveci <berk.geveci@kitware.com> Merge-request: !578
-
12cbee2c Prevent empty splat shader string from crashing application. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !556
-
3c61d71c Fix a couple minor issues with this mapper. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !569
-
Will Schroeder authored
-
Will Schroeder authored
-
Scott Wittenburg authored
When arrays had really large negative values, table lookup crashed. This commit also applies the default scale to the point sprite radius only after the lookup in the table has happened.
-
Will Schroeder authored
Used vtkSMPTools and templates to speed up the elevation filters. A fast path was created for processing vtkPointSet input data.
-
Schuyler Kylstra authored
Added virtual GetSelection function to be overwritten by subclasses of vtkExtractarraysOverTime.
-
Brad King authored
Convert double-quote includes to angle brackets: git grep -l '#include "sstream"' | xargs sed -i 's/"sstream"/<sstream>/'
-
Brad King authored
In the only source where we include it we already have <stddef.h> anyway. Just drop the extra inclusion.
-
Brad King authored
Use std::auto_ptr instead.
-
Brad King authored
We already use std::string instead of vtksys::String, so just include the standard header.
-
3ae7dd3a ENH: Remove use of include <vtksys/ios/*> and vtksys_ios::* eaf0f6ac ENH: Remove use of include <vtksys/stl/*> and vtksys_stl::* Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !561
-
David Gobbi authored
If a wrapped C++ method returns std::string or "const char *", the wrappers try to decode it as utf-8 in order to return a unicode str() in Python 3. Originally, this meant that any decoding error led to a UnicodeDecodeError exception. After this change, if decoding utf-8 fails, the C++ string is returned as a raw bytes() object.
-
- Aug 23, 2015
-
-
175a4c43 Make vtkVariantStrictWeakOrder(a,b) work with Py3k. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !570
-
David Gobbi authored
For Python 2, this method operated like the cmp(a,b) method. In Python 3, there is no cmp(a,b) method, so instead this method now returns (a < b) like the original C++ method.
-
- Aug 22, 2015
-
-
698963f1 msvc2015: _set_output_format is gone Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !567
-
a7996f41 Converting python examples so they also run on Py3k. 3bfe9914 python3: add support in IOGeoJSON and IOParallelXML tests 55ab30f9 A fix to enable this script to work with Py3k. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Andrew Maclean <andrew.amaclean@gmail.com> Merge-request: !564
-
- Aug 21, 2015
-
-
-
55a445b5 vtkInformationObjectBaseKey: plug a memory leak Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Brad King <brad.king@kitware.com> Merge-request: !565
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
-
e29a8660 python3: add support in IOGeoJSON and IOParallelXML tests Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !554
-
f2252181 TestDataArrayAPI: use Finish macro to exit the function 4bc94e80 TestDataArrayAPI: remove unreachable code Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David Lonie <david.lonie@kitware.com> Merge-request: !559
-
Scott Wittenburg authored
-
86f7895b Preserve extent ranges when extracting unsampled VOIs. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !560
-
-
- Aug 20, 2015
-
-
Brad King authored
We no longer need this compatibility layer for the compilers we support. Use the following commands to switch to standard header and namespace: git grep -l vtksys/ios/ | xargs sed -i 's|vtksys/ios/||' git grep -l vtksys_ios | xargs sed -i 's|vtksys_ios|std|g'
-
Brad King authored
We no longer need this compatibility layer for the compilers we support. Use the following commands to switch to standard header and namespace: git grep -l vtksys/stl/ | xargs sed -i 's|vtksys/stl/||' git grep -l vtksys_stl | xargs sed -i 's|vtksys_stl|std|g'
-
David C. Lonie authored
Previously, extent ranges would always start at 0. This makes sense for downsampled extractions, but for dimensions where SampleRate was 1, it's more intuitive to keep the existing sample ranges.
-
Ben Boeckel authored
-