- Aug 29, 2024
-
-
Kitware Robot authored
-
- Aug 28, 2024
-
-
d3adc537 Exclude render window details from serialization Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Sebastien Jourdain <sebastien.jourdain@kitware.com> Merge-request: !11437
-
ee9bf198 Replace default destructor with default Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Mathieu Westphal (Kitware) <mathieu.westphal@kitware.com> Reviewed-by:
Nicolas Vuaille <nicolas.vuaille@kitware.com> Merge-request: !11412
-
Kitware Robot authored
-
- Aug 27, 2024
-
-
d4984de8 consolidate common test setup code Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !11442
-
ce525d83 Define comparison operators as const Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Mathieu Westphal (Kitware) <mathieu.westphal@kitware.com> Merge-request: !11439
-
c58f8c36 Mangle ThirdParty/glad library symbols d14f9301 Add ThirdParty/glad library Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !11415
-
Jefferson Amstutz authored
-
d40e850d Fix mixed cell type rendering in vtkWebGPUPolyDataMapper Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !11411
-
2ac14b21 Use WritePointer in vtkMultiBlockPLOT3DReader 022be287 Fix miscount in TestReflectionFilter a851fd71 Fix small mistake in TestAppendMolecule f0cb53b7 Fix otherFieldData array usage 7b11a643 Fix CellVectors size issue in vtkStreamTracer 9ef902e1 Use Insert to incrementally build cell array e079c89e Fix vtkStructuredAMRGridConnectivity MaxId issue a4fd5b72 Fix MaxId issue in vtkHyperTreeGridContour ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Mathieu Westphal (Kitware) <mathieu.westphal@kitware.com> Acked-by:
Sean McBride <sean@rogue-research.com> Merge-request: !11432
-
57029bec Fix a few warnings Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Léon Victor <leon.victor@kitware.com> Reviewed-by:
Lucas Givord <lucas.givord@kitware.com> Merge-request: !11422
-
David Gobbi authored
The two objects compared by the operators should be const, as is already the case for most comparison operators in VTK. This fits with the default comparison operator definitions provided by c++20.
-
Kitware Robot authored
-
- Aug 26, 2024
-
-
84ef564f Rendering: Remove RenderingOpenGL2 dep on IOXML Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Cory Quammen <cory.quammen@kitware.com> Acked-by:
Jaswant Panchumarti (Kitware) <jaswant.panchumarti@kitware.com> Merge-request: !11389
-
Jaswant Panchumarti (Kitware) authored
- excludes UseOffScreenBuffers, ShowWindow and OffScreenRendering and DPI properties - these properties are typically setup differently in clients
-
Kitware Robot authored
-
- Aug 25, 2024
-
-
Kitware Robot authored
-
- Aug 24, 2024
-
-
David Gobbi authored
When getting a naked pointer for writing to an array, the WritePointer() method ensures the array is adjusted so that it can receive the new values. If just GetPointer() is used, then the MaxId of the array is not correctly set.
-
David Gobbi authored
Not enough tuples were added to the arrays.
-
David Gobbi authored
The Atom and Bond data arrays were not regenerated when the number of bonds and atoms was changed.
-
David Gobbi authored
This very old test was using arrays in strange ways, resulting in array access beyond the MaxId of the arrays.
-
David Gobbi authored
The size of the array was not being adjusted to the cell size prior to use. As a result, the array was being written to beyond MaxId, though still within the array's allocation.
-
David Gobbi authored
The InsertComponent() method ensures that the MaxId of the array is adjusted, so that out-of-bounds accesses do not occur.
-
David Gobbi authored
The ghost arrays were built with SetValue() without adjusting the MaxId to indicate the number of values in the array. With InsertValue(), the MaxId is adjusted automatically.
-
David Gobbi authored
To ensure MaxId is properly set for cell scalar array, use Insert instead of SetTuple.
-
David Gobbi authored
-
David Gobbi authored
When the size of an array is fixed, there is no reason to use Allocate() since SetNumberOfTuples()/Values() is simpler and ensures MaxId is set.
-
David Gobbi authored
This ensures that we aren't reading into values that are beyond the MaxId of the array.
-
David Gobbi authored
Calling SetNumberOfTuples() already does the calculations that were being done here in the code, and has the benefit of also adjusting the MaxId of the array.
-
David Gobbi authored
Added SetNumberOfValues() after the allocation in order to avoid setting values beyond the MaxId of the array.
-
David Gobbi authored
The tuple, component indices into the weight array were reversed.
-
David Gobbi authored
Setting the size of an array is best done with SetNumberOfValues(), since Resize() only changes the allocation but not the number of items present.
-
David Gobbi authored
This class was accessing its ItemLocation array beyond MaxId, now it uses the array in a more standard way.
-
0f4635e8 Prefer SystemTools::Stat over system stat/stat64 fd1b7a2f Revert include file ordering in large file check Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Mathieu Westphal (Kitware) <mathieu.westphal@kitware.com> Merge-request: !11406
-
Kitware Robot authored
-
- Aug 23, 2024
-
-
Jaswant Panchumarti (Kitware) authored
- adds TestMixedGeometry.cxx to exercise rendering of a polydata with points, lines, polylines, polygons and triangles.
-
a4dc4865 Fix fractional point rendering in vtkWebGPUPolyDataMapper Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !11410
-
bff04c86 Merge branch 'upstream-loguru' into wasm-enable-logging 3a556b15 loguru 2024-08-21 (24da0e01) 71c5dfe8 loguru: update for PTLS in emscripten Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !11420
-
90874ba4 Doc: Update dev guide for CI fixes in fork settings Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Lucas Givord <lucas.givord@kitware.com> Reviewed-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !11428
-
Mathieu Westphal (Kitware) authored
-