- Apr 07, 2016
-
-
David DeMarle authored
rather than use a version of xdmf3 where cmake has been tailored for VTK, use stock xdmf3 (which was changed to allow this) and tell it how we want to build it
-
David DeMarle authored
-
ee3cf345 Fix SynchronizedTemplatesCutter3D use of vtkIdType Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !1407
-
9e612e6d Increase VTK OS X minimum check from 10.6.0 to 10.6.8 9cf9db1a Fixed mixup of deployment vs SDK check Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !1405
-
9840e3ca Ensure that stdc headers are included in HDF5 builds. 33c3b20b Wrap vtk3DSImporter globals in a namespace. dbcb37d3 Add missing 'inline' statements. c0ea11f4 Move includes out of anon namespace. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David E DeMarle <dave.demarle@kitware.com> Merge-request: !1403
-
- Apr 06, 2016
-
-
Sean McBride authored
This was already documented in README.md
-
Sean McBride authored
-
Sujin Philip authored
Certain places were using ints instead of vtkIdType resulting in segmentation faults for large datasets. This fix is based on vtkSynchronizedTemplates3D which was already fixed.
-
7a24b326 Change picking manager to not own objects associated with pickers Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Sankhesh Jhaveri <sankhesh.jhaveri@kitware.com> Merge-request: !1398
-
58a0720f fix cpp check warning for ambiguous precidence Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Sean McBride <sean@rogue-research.com> Merge-request: !1404
-
David C. Lonie authored
Without this, static MSVC builds don't compile ('FILE' isn't defined).
-
David C. Lonie authored
Some of these are common identifiers (col, pos, etc.) and are causing identifier collisions/shadow var warnings on MSVC. Updated the variable names to use VTK style while refactoring.
-
David C. Lonie authored
Since vtkArrayListTemplate.h includes vtkArrayListTemplate.txx, all non-templated methods defined in the implementation file need to be marked inline to prevent warnings about ODR violations on static msvc builds.
-
David C. Lonie authored
The included file was pulling in <cassert> and defining the Win32 assert implementation '_wassert' both inside and outside of the anonymous namespace, leading to ambiguous function call errors on static debug win32 builds. See mailing list discussions: http://public.kitware.com/pipermail/vtkusers/2016-April/094860.html http://public.kitware.com/pipermail/vtkusers/2016-April/094854.html http://public.kitware.com/pipermail/vtkusers/2016-April/094814.html
-
Ken Martin authored
issue between ^ and ternary ?
-
f5b4968a make the point fill pass also write depth Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Berk Geveci <berk.geveci@kitware.com> Merge-request: !1397
-
024a9755 Instantiate rotated arrays in AngularPeriodicFilter Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !1338
-
d0ec9a69 update incorrect valid image for ospray_valid_window Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1401
-
Ken Martin authored
The window test valid image was missing the window.
-
- Apr 05, 2016
-
-
0c166ca0 Fixed regression from da150781, correct OS X deployment check Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1400
-
Sean McBride authored
Deployment can in fact be 1068, which I’d entirely forgotten.
-
Sujin Philip authored
Add an option to choose between on-the-fly rotations and explicit arrays generation in vtkAngularPeriodicFilter.
-
Max Smolens authored
When adding a vtkPicker to the picking manager, a vtkObject can optionally be associated with the picker. This commit changes the behavior of vtkPickingManager to not own (i.e. increment the reference count) of these associated objects. Instead, the object references are held in a raw pointer. The widget framework is the primary client of the picking manager. The typical vtkWidgetRepresentation subclass adds its pickers to the picking manager and includes an associated object reference to itself: pickingManager->AddPicker(picker, this); When the widget/representation are destroyed, the vtkWidgetRepresentation destructor unregisters its pickers: pickingManager->RemoveObject(this); However, because the picking manager took ownership of the associated objects, the vtkWidgetRepresentation instances and their pickers are not destroyed until the vtkPickingManager is destroyed. In particular applications, this could lead to a large number of objects referenced only by vtkPickingManager that would exist until application exit. The picking manager test is updated for the use case demonstrated by the widget framework.
-
Ken Martin authored
depth buffers are useful, should write them more often
-
bc389ab2 Shift and scale VBO when precision requires it. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1381
-
- Apr 04, 2016
-
-
f76edcee Smooth the trackpad scrolling interaction for Qt. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !1355
-
cdbb5feb cleanup some dashboard issues Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !1396
-
David DeMarle authored
forgot the baseline image and missed the unused arg warning flag (as usual)
-
- Apr 03, 2016
-
-
f0b7c981 Minor style issues fb6c9ee6 Dashboard warnings 66d9f421 Dashboard warnings c320b608 Promote integral arrays to real type if requested ff223e47 Added cubic and quartic SPH kernels Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !1390
-
Will Schroeder authored
-
- Apr 02, 2016
-
-
00437a29 Remove a deprecated function from vtkParametricRandomHills. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1394
-
Will Schroeder authored
-
Will Schroeder authored
-
Will Schroeder authored
Interpolation of integral types can be problematic. Promoting to float type can improve the results of interpolation.
-
Andrew Maclean authored
The function: `void GenerateTheHills(void);` was deprecated in VTK 6.2.
-
- Apr 01, 2016
-
-
01a12a27 fix initial cmake config Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !1392
-
David DeMarle authored
I didn't catch the fact that these are undefined on a new build during testing.
-
c3e6bc07 ADD: Readme 9084b08f FIX: for openslide v3.4.0-1 in ubuntu 455ce318 FIX: Image streaming c0615a90 ADD: CanReadFile implementation with tests 1bf26eb6 FIX: Header errors and data alignment 883f6531 ENH: Working tests for Update 0e647a2d ENH: Find openslide on fedora d36c7e53 ADD: New Microscopy domain and vtkOpenSlideReader Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1235
-
e35318d9 Remove >= 10.6 check, since that’s VTK’s minimum nowadays 10fe289c Add .DS_Store to .gitignore file 88a4a2a9 Mention bug number in logged output a871243c Fixed various OS X-related comment spelling a3be2cd3 Removed dead code, since 08d7b9fe (September 2014) Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1382
-
e4020e33 rename Ospray to OSPRay c5a51d13 Flesh out ospray rendering and scene graph 0b53b14c polish the tests 59580da9 Add a new rendering backend that draws via the OSPRay ray tracer 94811a10 Add a systematic approach to traversing VTK's renderables de7ea53b Allow backend agnostic render passes. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !1365
-