- May 25, 2018
-
-
Nicolas Vuaille authored
* Introduce vtkAppendMolecule filter to append input molecules into one (with atomData and bondData) * Since vtkMolecule is in Common/DataModel, move vtkMoleculeAlgorithm to Common/ExecutionModel
-
- May 24, 2018
-
-
-
47e87f0e Fixing issue with writing structured XML field data Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !4322
-
47e87f0e Fixing issue with writing structured XML field data Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !4322
-
0f6d8394 Introduced new composite datasets for partitioned data. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !4155
-
Andrew Bauer authored
-
4556c3e0 Take advantage of zero copy textures in ospray. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !4320
-
74437a9b disable TestNumberToString on MSVC 2013. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !4321
-
45704131 Improve QVTKOpenGLWidget and add QVTKOpenGLWindow class based on QOpenGLWindow bc362f71 Fix viewport size before FXAA pass on OSX 80410789 Invoke WindowResizeEvent on vtkWindow::SetSize() call f9b9eeec Fix memory exception with checkerboard stereo 2e593f8b Add WindowStereoTypeChangedEvent fired by vtkRenderWindow Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Joachim Pouderoux <joachim.pouderoux@kitware.com> Merge-request: !4317
-
Fixing stereo support with Qt5. Commit 139f787a was introducing QVTKOpenGLWidget to couple a vtkRenderWindow with a QOpenGLWidget. However, both QVTKOpenGLWidget and its superclass QOpenGLWidget manage a single frame buffer. QVTKOpenGLWindow derives the QOpenGLWindow class to benefit from an OpenGL context managing multiple frame buffers. It can be used as a QWidget by calling QWidget::createWindowContainer() on your QVTKOpenGLWindow instance. QVTKOpenGLWidget has been reimplemented to use thes QVTKOpenGLWindow directly has a widget. It is recommended to do so. The old QVTKOpenGLWidget is been moved into QVTKOpenGLSimpleWidget and should not be removed as it support being a native widget, wich the new implementation does not. There is a new QVTKOpenGLWidget::isValid() method to check that the widget is ready to render. It is to be noted that there is a specific implementation of event handling in order to work around QTBUG-61836. The Qt::WindowTransparentForInputFlag has no effect on Mac. Thus events are not being passed to the widget. We let the window grabbing all events and then forward them to the widget. We also take care for providing a method to forward back events to the window if events were explicitely triggered on the widget instance. This is the case for some paraview testing logic that should now use the provided testingEvent() method instead of notifying the widget with events. It is to be noted that, on OSX, the widget is always resized to its internal vtkRenderWindow size to ensure that the viewport is correct. This is necessary only on MacOS when HiDPI is supported. Enabling HiDPI has the side effect that Cocoa will start overriding any glViewport calls in application code. For reference, see QCocoaWindow::initialize(). This also improve tests and examples using the QVTKOpenGLWidget
-
Resize the renderer viewport to its original size when preparing the FXAA pass. This is necessary only on MacOS when HiDPI is supported. Enabling HiDPI has the side effect that Cocoa will start overriding custom glViewport calls. For reference, see QCocoaWindow::initialize(). Here we ensure that the viewport size is correct just before doing the pass.
-
Inform observers about a change in the render window size.
-
Fixing exception "double free or corruption" in stereo checkerboard cleanup. According to the comments, even scanlines should start on x=1. Thus the pointer to pixel data should have an offset of 3 for even scanline. The wrong test was performed, resulting in applying the offset for odd scanlines instead of even ones.
-
Add an event to indicate that the stereo type has changed on the render window. This will be used in future commit to tell the QVTKOpenGLWindow that it needs to recreate its context.
-
- May 23, 2018
-
-
Utkarsh Ayachit authored
TestNumberToString fails beyond the case we ignored in 2ea0325f. Just removing the test of MSVC 2013.
-
David E. DeMarle authored
-
54312bc7 A change to the texture has to cause a redraw. 9d89712e Plug a vtk2osp leak and avoid a copy while exposing more formats. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !4318
-
David E. DeMarle authored
GL side catches this, vtk2osp missed it.
-
David E. DeMarle authored
Instead of making a copy of the texture to format it, we now check for a compatible format and pass it by reference. The change also exposes ospray's float, single component and rgba texture formats.
-
- May 22, 2018
-
-
Berk Geveci authored
This is the first step in our attempt to create next generation composite datasets for partitioned data and arbitrary dataset collections. The main idea is that partitioned datasets are instances of vtkPartitionedDataSet, which is a vector of datasets. It is required that these datasets are compatible, i.e. can be processed by the same type of filters together. This is similar to vtkMultiPieceDataSet but will formalize that partition concept further. The second new data type is vtkPartitionedDataSetCollection. This is a vector of vtkPartitionedDataSets. It can be an arbitrary collection but is not a tree like its predecessor vtkMultiBlockDataSet. Any further grouping of the blocks will be done by the use of SIL data structures, which will be supported later. Also added basic IO support for these data types.
-
2ea0325f add MSVC 2013 exclusion. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !4316
-
Utkarsh Ayachit authored
vtkNumberToString doesn't work with perfectly on MSVC 2013, hence we skip those tests. It's still better than when not using double-conversion library and hence we don't change the use of the same in writers, only skip the tests.
-
- May 21, 2018
-
-
-
9aaf4c8d Fixing bug with unstructured grid ghost cell generator. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David E. DeMarle <dave.demarle@kitware.com> Merge-request: !4310
-
9aaf4c8d Fixing bug with unstructured grid ghost cell generator. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David E. DeMarle <dave.demarle@kitware.com> Merge-request: !4310
-
0d9871ee ArchiveTestingDataOnGirder: Switch default to VTK collection b3a95c87 ArchiveTestingDataOnGirder: Add script to upload to data.kitware.com Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4314
-
Brad King authored
-
Import the script originally created in ITK.
-
3317d05b ExternalData: Update URLs for vtk.org to use https 29af3ea1 ExternalData: Drop URLs using midas3.kitware.com f09b4ab5 ExternalData: Add URLs to fetch from Girder on data.kitware.com d6d05b2a ExternalData: Convert content links from MD5 to SHA512 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4306
-
99c753de fix buffer overrun Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4313
-
Ken Martin authored
allocated one too few bytes
-
- May 19, 2018
-
-
f62554cf Eliminate Windows name mangling workaround for GCCXML wrap Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4303
-
Andrew Bauer authored
Issue was with not keeping memory unmodified for unblocking sends until send was checked to make sure it completed. Addresses paraview/paraview#18175.
-
- May 18, 2018
-
-
389c5aab Remove redundant code Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4304
-
07b2c222 Fix typo in comments, xform to sform Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4308
-
David Gobbi authored
-
cbbe9f62 Fix documentation, use K for slice index. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4307
-
David Gobbi authored
-
bf015d28 Add tone mapping render pass Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ken Martin <ken.martin@kitware.com> Acked-by:
Joachim Pouderoux <joachim.pouderoux@kitware.com> Merge-request: !4293
-