- Aug 27, 2024
-
-
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
-
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
-
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
-
5d3b5e51 ci: bump emsdk to 3.1.64 Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !11418
-
Mathieu Westphal (Kitware) authored
Fix warnings detected by gcc 14 when building with ``` SET(CMAKE_CXX_FLAGS "-Wall -Wextra -Wshadow -Woverloaded-virtual -Wno-deprecated -Wno-strict-overflow -Wno-array-bounds -Wunreachable-code -fdiagnostics-color=always -Wstringop-overflow -Wstringop-overread" CACHE STRING "") SET(CMAKE_C_FLAGS "-Wall -Wextra -Wshadow" CACHE STRING "") ``` The fixes are mostly about shadowed variables and methods
-
Kitware Robot authored
-
- Aug 22, 2024
-
-
f42bd60f Disable wasm opengl window in webgpu factory init Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !11419
-
fafc5577 Fix normal source update fd2fcda9 Fix naming of fragment-generated normals Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Jaswant Panchumarti (Kitware) <jaswant.panchumarti@kitware.com> Merge-request: !11417
-
aa0c154a vtk-m: Bump to fix compilation error with Cuda 12.6 Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Acked-by:
Vicente Bolea <vicente.bolea@kitware.com> Reviewed-by:
Vicente Bolea <vicente.bolea@kitware.com> Acked-by:
Dan Lipsa <dan.lipsa@kitware.com> Merge-request: !11400
-
Scott Wittenburg authored
-
David Gobbi authored
This keeps all of the stat() calls in VTK centralized (except the ones implemented in ThirdParty). Note that kwsys no longer defines any LSF support macros since 2019, so this might impact the ability to use large files on some 32-bit platforms, but hopefully any platforms where this is a concern will honor _FILE_OFFSET_BITS=64 like 32-bit glibc does.
-
Michael Migliore authored
-