- Feb 27, 2025
-
-
aa2e0f9f vtkOpenXRSceneObserver: add missing `<algorithm>` header ce7dc622 ci: exclude test failures on Linux with aarch64 a95f131b UnitTestMath: fully initialize `quat` f8cf906b UnitTestMath: consider that `char` might be unsigned 700649df vtkHDFUtilities: support `char` as unsigned ad3c8e73 IO/HDF: link tests to VTK::IOExodus for information key 46f0c203 TestHyperTreeGridSourceDistributed: use `int8_t` instead of `char` 46869d7b ci: exclude some precision-sensitive tests on aarch64 ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Cory Quammen <cory.quammen@kitware.com> Acked-by:
Johnny <johnnync13@gmail.com> Merge-request: !11895
-
2d2993db Fix RGBA color scalar array name in vtkPLYReader Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Mathieu Westphal (Kitware) <mathieu.westphal@kitware.com> Merge-request: !11944
-
Kitware Robot authored
-
- Feb 26, 2025
-
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
`char` is unsigned on aarch64.
-
Ben Boeckel authored
-
Ben Boeckel authored
`char` on aarch64 is `unsigned` and the negative variants for `PointClassification` end up leaking out when compared with literals where promotion occurs (as `int`). While `CellClassification` lacks negative variants, using its enum name helps to keep usage consistent. Assign the `int8_t` storage size for these `enum` types and store its type explicitly where used.
-
Ben Boeckel authored
-
Ben Boeckel authored
GCC on Linux aarch64 is warning that the temporary doesn't live long enough. I don't see why it wouldn't though as `.Get()` returns a pointer which shouldn't need any lifetime extension rule to keep alive.
-
Ben Boeckel authored
This code was rewritten in dda65158 (BUG: Fix escape character handling, improve test coverage., 2010-11-24). Given the `- '0'` on the value guarded by the conditionals, it is likely that these were meant to be the ASCII value of the numerals 0-9, not the numeral values 0-9. Use `isdigit` to simplify the expression. Discovered via Linux aarch64 warnings about `*pos >= 0` being a tautology.
-
Ben Boeckel authored
On Linux aarch64, `char` is unsigned, so comparison with negative integers is always false.
-
Ben Boeckel authored
On Linux aarch64, `char` is unsigned, so integer promotion interferes with using a literal `-1`.
-
Ben Boeckel authored
This predicate clause was introduced in e6d1e71e (BUG: Avoiding debug assertion on with VS8…, 2009-05-06) in the context of avoiding a debug assertion in VS8 when using the routine during `CanReadFile` as it opens in ASCII mode but might actually be a binary file. On aarch64, this way of testing the high bit is a tautology. Instead, use the `isascii` function to make the expression meaningful at a glance.
-
Ben Boeckel authored
This warning is about GCC7+ having a different ABI than GCC6. Since GCC6 is no longer supported, we can ignore this ABI difference.
-
-
Ben Boeckel authored
-
Ben Boeckel authored
This version has prebuilt binaries for Linux aarch64 available.
-
Ben Boeckel authored
For use with aarch64 because the Fedora 39 container has issues rebuilding due to the removal of the openturns repository. Disable OSPRay and Anari on aarch64 as they use Intel-specific bits currently.
-
Ben Boeckel authored
-
Note that aarch64 wheels are built on manylinux_2_28 due to the unavailability of `git-lfs` in CentOS 7 for aarch64 (the manylinux2014 base distribution).
-
Ben Boeckel authored
-
Ben Boeckel authored
The wheel containers have shifted and they no longer provide a newer `ninja` package.
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
-
-
Ben Boeckel authored
-
Ben Boeckel authored
-
Ben Boeckel authored
-
3fb1c011 vtkType: Convert defines into enum and deprecate some types Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Lucas Givord <lucas.givord@kitware.com> Reviewed-by:
Nicolas Vuaille <nicolas.vuaille@kitware.com> Merge-request: !11886
-
f2fc0bf5 ci: exclude TestValuePassFloatingPoint2 from wasm builds a8551bd5 Add second test for floating point vtkValuePass 2c99a81b vtkValuePass: save and restores GL state to fix rendering issues Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Jaswant Panchumarti (Kitware) <jaswant.panchumarti@kitware.com> Merge-request: !11921
-
TEEPE-SAGER\ateep authored
Set the correct Active Scalars Array name when PLY file contains RGBA color data instead of RGB. The reader currently always sets array to "RGB", even when file has RGBA data where the array name is set to "RGBA", causing no active scalars to be set by default, and no colors appearing when rendered.
-
e5dd56b3 Add vtkOpenXRSceneObserver and vtkOpenXRSceneComponent 349286a8 Include cmath in vtkOpenXRUtilities.h a83e13e0 Update Windows CI OpenXR Loader version 315b6ed9 Move OpenXR feature request from vtkOpenXRManager to vtkOpenXRRenderWindow Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Merge-request: !11902
-
Kitware Robot authored
-