- Aug 11, 2016
-
-
David C. Lonie authored
The depth peelers currently assume gl_FragCoord.z is always the depth, but the imposter shaders in Domains/Chemistry modify the depth. This patch adds a //VTK::Depth::Impl hook into the fragment shader template, before any depth peeling processing is applied. The depth is stored into gl_FragDepth, and all depth processing now uses this variable instead of gl_FragCoord.z.
-
edd4bb12 fix an error when turnign on wide lines with surface_edges CPD Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1796
-
ad3eb6d1 vtkMersenneTwister: Work around NULL conversion error on VS 2010 Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
T.J. Corona <tj.corona@kitware.com> Merge-request: !1803
-
Brad King authored
VS 2010 fails to compile vtkMersenneTwister with: error C2440: 'initializing' : cannot convert from 'int' to 'mt_struct *' It is unclear why it fails to convert `NULL` (which expands to `0`) to a null pointer. Work around the problem with an explicit cast.
-
1960ede7 Fix a shadow global warning in XOpenGLRenderWindow Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Ken Martin <ken.martin@kitware.com> Merge-request: !1795
-
751972fe Replace baseline that appeared to be anti-aliased Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1788
-
5700ffb3 Suppress a cppcheck warning about std::string Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David Gobbi <david.gobbi@gmail.com> Merge-request: !1801
-
- Aug 10, 2016
-
-
Sean McBride authored
-
ad0b8859 Merge branch 'upstream-diy2' into update-diy2-Aug2016 88b1e562 diy2 2016-08-08 (2976fdb3) Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !1781
-
Ken Martin authored
The edges and tris were using the same program and the optimization was not detecting that the edges needed a new program.
-
Mathieu Westphal (Kitware) authored
-
90dd47a5 Form labels are no longer clipped Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !1792
-
806ed058 Compare depths with a tolerance in the dual depth peeler. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1785
-
03aca652 vtkWrapTcl: Select vtkIdType printf format based on implementation type 9d1b6d69 IO/NetCDF: Fix NetCDF API selection for vtkIdType 579d9160 IO/Xdmf2: Explicitly convert vtkIdType to corresponding Xdmf integer type 17daf6ef IO: Overload database BindParameter methods on `long long` directly c73ddec2 Parallel/Core: Drop unnecessary VTK_USE_64BIT_IDS conditional blocks b3750e06 vtkXMLDataElement: Add missing `long` overloads for some APIs Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David Gobbi <david.gobbi@gmail.com> Merge-request: !1780
-
58028e1c Do a sanity check on the extent for the iterator Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1711
-
- Aug 09, 2016
-
-
7c0396ab Add vtkVolumeOfRevolutionFilter to VTK. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Marcus D. Hanwell <marcus.hanwell@kitware.com> Merge-request: !1751
-
6c64dd50 Add vtkBinCellDataFilter to VTK. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Marcus D. Hanwell <marcus.hanwell@kitware.com> Merge-request: !1786
-
Dženan Zukić authored
The text on some labels on the right side of the form are clipped because the labels themselves were not wide enough. This commit makes them wide enough to fit the text without clipping.
-
375d8d12 Applying cellToPoint transformation to the ray step vector. fb31175a Added a mode to adjust sampling distance to input spacing. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1776
-
T.J. Corona authored
This commit introduces a new filter, vtkBinCellDataFilter, to VTK. vtkBinCellDataFilter takes a source mesh containing scalar cell data, an input mesh and a set of bin values and bins the source mesh's scalar cell data into the cells of the input mesh. The resulting output mesh is identical to the input mesh, with an additional cell data field, with tuple size equal to the number of bins + 1, that represents a histogram of the cell data values for all of the source cells whose centroid lie within the input cell. This filter is useful for analyzing the efficacy of an input mesh's ability to represent the cell data of the source mesh.
-
Cory Quammen authored
Tests are run without anti-aliasing, so the anti-aliased baseline image was causing test failures.
-
Sujin Philip authored
* upstream-diy2: diy2 2016-08-08 (2976fdb3)
-
Code extracted from: https://gitlab.kitware.com/third-party/diy2.git at commit 2976fdb389aef387b03ee06419e7ccb889d54448 (for/vtk).
-
David C. Lonie authored
Similar to the older depth peeler, sometimes the GL implementation computes slightly different depths for the same fragments from one pass to the next. Use a small tolerance when identifying the currently peeled fragments.
-
Alvaro Sanchez authored
The scale/offset transformation required to adjust OpenGL texture-coordinates to VTK's point data has now been condensed into a matrix. This matrix, besides transforming the texture coordinate, is now also applied to the DatasetToTexture transformation (vertex shader) in order to scale the ray step to point texture-coordinates (frag shader). Limit tex-coordinates are also now directly adjusted (e.g. [0, 1]-> [point_min, point_max]) on the host side and passed as uniforms. This change required two baseline images to be adjusted given that the ray step as rescaled. The change fixed the visibility of sampling-seams in ParaView when doing parallel rendering.
-
Alvaro Sanchez authored
LockSampleDistanceToInputSpacing is a mode currently used in vtkFixedPointVolumeRayCastMapper to adjust its ray sampling distance. Added this same mode in GPUVolumeRayCast to equalize the actual distance used in both mappers when used through ParaView.
-
Brad King authored
Use `VTK_ID_TYPE_IMPL` instead of `VTK_USE_64BIT_IDS` to more directly choose a printf format for vtkIdType values.
-
Brad King authored
Select between nc_get_vars_long and nc_get_vars_longlong based on the type actually used to implement vtkIdType.
-
Brad King authored
Do not assume that `XdmfInt32` and `XdmfInt64` exactly match our `vtkIdType` 32-bit and 64-bit types. Instead only assume that the types are binary compatible. Add explicit casts accordingly.
-
Brad King authored
Do not assume that vtkTypeInt64 and vtkTypeUInt64 are `long long`. Instead overload on `long long` and `unsigned long long` directly. We already overload on other basic integer types directly.
-
Brad King authored
Several vtkCommunicator and vtkMultiProcessController methods are duplicated for `vtkIdType` and `long long` when in fact only the latter is necessary. All these APIs are overloaded for all basic integer types, so the proper one can be chosen by the compiler for use with callers that have a `vtkIdType`.
-
Brad King authored
Add GetScalarAttribute and GetVectorAttribute overloads for `long`.
-
ab085764 Fix issues in OpenFOAM reader update. a041813d Pass new option to openFOAM sub-readers. 39b1a1dd Fix bug in OpenFOAM's ReadBinaryList. f5d5a99c Remove hacky template override from vtkOpenFOAMReader. 3187bb0d Fix bug in openfoam's main Read method. 0909f4fc Initial support for 64-bit labels in vtkOpenFOAMReader. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
T.J. Corona <tj.corona@kitware.com> Merge-request: !1770
-
28f401ac FindPackageHandleStandardArgs now can be used with pre CMake 3.0 Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Brad King <brad.king@kitware.com> Merge-request: !1784
-
Robert Maynard authored
-
- Aug 08, 2016
-
-
41af21c5 Modified according to David G's recommendation Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1777
-
8a91bb36 Merge branch 'upstream-tiff' into update-libtiff abdc7b6e tiff 2016-08-03 (a4c0c70d) Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David Gobbi <david.gobbi@gmail.com> Merge-request: !1765
-
Recommendation was to leave graph building code untouched but to add Modified() calls to Add/Remove functions.
-
- Aug 05, 2016
-
-
5d65c9f8 Merge branch 'master' of gitlab.kitware.com:vtk/vtk into joseph.g.hennessey2.ctr/vtk-vtkcamerafix 133b118e add new baseline files f175d0fb removed incorrectly commited files 3a14f720 fix incorrect addition of data ab79a10a added new reference file for external data repository 1cc99040 Merge branch 'joseph.g.hennessey2.ctr/vtk-vtkcamerafix' into vtkcamerafix e16cf85d new baseline images for vtkcamerafix changes c2715a36 Merge branch 'master' into joseph.g.hennessey2.ctr/vtk-vtkcamerafix ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !1654
-
109f782a Remove all PrintRevisions references from wrappers 2aed1400 Actually wrap old methods in VTK_LEGACY_REMOVE Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Sean McBride <sean@rogue-research.com> Merge-request: !1775
-