- May 31, 2017
-
-
Mathieu Westphal (Kitware) authored
This commit adds GetMeshMTime method to vtkUnstructuredGrid and vtkPolyData. It also switch some filters to ObjectFactoryMacro for subsequent usage in ParaView
-
- May 30, 2017
-
-
c4875273 add better support for cube map textures and mipmaps Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Nicholas Milef <milefn@rpi.edu> Reviewed-by:
David Lonie <david.lonie@kitware.com> Merge-request: !2866
-
a0bbc338 Removed unneeded calls to .cstr(), found by clang-tidy Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Marcus D. Hanwell <marcus.hanwell@kitware.com> Merge-request: !2889
-
Ken Martin authored
This topic adds cubemap and mipmap options to vtkTexture It updates the polydatamapper to always declare and bind any textures assigned to the actor/property even if there are no texture coordinates (the shader may compute them) mipmaps are supported for cubemaps on OpenGL 4 or later. For earlier versions the request is ignored.
-
2d1d4638 Removed unneeded checks for null before using delete Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Marcus D. Hanwell <marcus.hanwell@kitware.com> Merge-request: !2886
-
2f2a4c0b Bump minimum required GCC compiler to 4.7 Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David Lonie <david.lonie@kitware.com> Merge-request: !2877
-
e87abbc7 Cleanup logic to propagate device pixel ratio. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2885
-
Utkarsh Ayachit authored
QVTKOpenGLWidget now propagates device pixel ratio, widget size, and widget position to the render window and interactor in `recreateFBO`. That method gets called when these parameters are changed through various scenarios e.g widget resize, opengl context change, screen change, etc.
-
Sean McBride authored
Found with readability-redundant-string-cstr clang-tidy check.
-
ea10ab5c Output was empty in parallel in some cases, this fixes it Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Will Schroeder <will.schroeder@kitware.com> Merge-request: !2887
-
Mathieu Westphal (Kitware) authored
-
- May 29, 2017
-
-
Sean McBride authored
Found by clang-tidy’s readability-delete-null-pointer
-
89802bd1 Fix some memory leaks in vtkSphereTree and cleanup api Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2883
-
Mathieu Westphal (Kitware) authored
-
382f9819 Fix(Java): Handle use case when no graphics configuration available 42b63d57 Fix Java/SWT mouse wheel handling Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2884
-
Sebastien Jourdain authored
This should fix bug #16974
-
Sebastien Jourdain authored
Code contributed by Jensgw related to bug #16918
-
- May 28, 2017
-
-
048637a0 PLOT3D Reader: add ability to discard intermediate results. ce202b89 PLOT3D Reader: avoid duplicate computations 998f7a95 PLOT3D Reader: release field arrays in execute Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Berk Geveci <berk.geveci@kitware.com> Merge-request: !2875
-
- May 27, 2017
-
-
48e2a4c1 Simplified independent/dependent component mode selection for 1D_TF. 05af3d3f Added test for transfer function 2D. 4e157028 Added fragment shader code for 2D Transfer Functions. ac38b6a0 Using opacityTablesMap for consistency. 11c36123 Implemented TransferFunction2D initialization and clean-up. 5883a1a3 Fixed graphics mem leak when re-initializing transfer 1D. 23abf8b9 Adding support for 2d-transfers in volume mapper. fc57b9fc Added 2D transfer functions to vtkVolumeProperty's API. ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Marcus D. Hanwell <marcus.hanwell@kitware.com> Merge-request: !2809
-
b26514b5 Suppress a cppcheck 1.79 false positive Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David Gobbi <david.gobbi@gmail.com> Merge-request: !2881
-
- May 26, 2017
-
-
Sean McBride authored
-
Alvaro Sanchez authored
Cleanup. Moved much of the TF_1D / TF_2D branching outside from the Render() methods and into separate methods. Fixed various warnings. Improved documentation.
-
Alvaro Sanchez authored
Split functionality in ComputeGradient::Dec into two functions, one containing all the reusable parts between 1D and 2D transfer functions (gradient computations) and one containing 1D specific calls. Changed transfer function type to VTK_FLOAT.
-
Alvaro Sanchez authored
2D Transfer Functions has its own code path and hence reimplements computeOpacity, computeColor and computeLighting. It keeps the same function signature for compatibility, therefore it needs to make use of new globally declared variables.
-
Alvaro Sanchez authored
This instead of hand-crafting the variable names again in the shader replacement, given that they are cached already in the map.
-
Alvaro Sanchez authored
Activating and deactivating TransferFunc2D texture.
-
Alvaro Sanchez authored
-
Alvaro Sanchez authored
Added vtkOpenGLTransferFunction2D which is a container for the 2D TF texture.
-
Alvaro Sanchez authored
-
Alvaro Sanchez authored
DrawPoly expects points > 2.
-
a8fffd81 Improve vtkPlaneCutter multiblock support Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Joachim Pouderoux <joachim.pouderoux@kitware.com> Merge-request: !2873
-
Mathieu Westphal (Kitware) authored
-
- May 25, 2017
-
-
Robert Maynard authored
GCC 4.6 doesn't support C++11 sufficiently
-
05f68e7a pre-commit: Fix import of ExternalData files with CRLF newlines Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !2874
-
- May 24, 2017
-
-
Utkarsh Ayachit authored
vtkMultiBlockPLOT3DReader now supports discarding intermediate computed results. Updated TestPDataSetReaderGrid to test that this new option works.
-
Utkarsh Ayachit authored
vtkMultiBlockPLOT3DReader would compute certain derrived quantities multiple times. Avoid that.
-
Utkarsh Ayachit authored
vtkMultiBlockPLOT3DReader intended to cache geometry. It accidentally ended up caching field arrays as well. That resulted in invalid output when array selection/function selection was changed. Fixed that. Addresses paraview/paraview#17467.
-
Brad King authored
We use `git hash-object` to load the original file into the Git object store. Add the `--no-filters` option to avoid applying any conversion filters that `git add` would apply based on attributes. Otherwise file content may not be preserved, such CRLF newlines when `core.autocrlf` is `true`.
-
787f0eaa Add alternate baseline for bigmac with OpenGL1 backend. 6906c846 Fix MapScalars to pass correct component for opacity mapping. c09f8c09 Add ability to read/save alpha from/in PLY files. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Berk Geveci <berk.geveci@kitware.com> Merge-request: !1930
-
dc7c62ab Ensure vtkVariant stream associated with << operator is set back to "dec". 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: !2869
-