- Sep 28, 2023
-
-
Jaswant Panchumarti (Kitware) authored
- these classes use texture buffers and vertex pulling which can help us reduce memory usage in the GLES 3.0 polydata mapper.
-
Jaswant Panchumarti (Kitware) authored
-
Jaswant Panchumarti (Kitware) authored
-
Jaswant Panchumarti (Kitware) authored
- Indicate that integer textures are required prior to assigning a context to the texture. - use glDrawElementsInstanced for GLES 3.0
-
Jaswant Panchumarti (Kitware) authored
-
Jaswant Panchumarti (Kitware) authored
-
Jaswant Panchumarti (Kitware) authored
- fixes code removed in vtk/vtk!4023 - adds proper logic to determine the format of single and multi-component integer textures.
-
f1bff557 Bump the maximum CMake version. 2eba0153 Move implementation of vtkStringToken out of VTK. 76a333a1 Omit `TestCellGridRendering` from windows wheel testing. 2c288f41 Remove globals that use `vtkNew<>`. 33ad9e65 Add a `FORCE_SHARED` option to `vtk_add_module()`. Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Merge-request: !10532
-
7d24fea0 Fix link issues with "ImplicitBackends" Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Mathieu Westphal (Kitware) <mathieu.westphal@kitware.com> Merge-request: !10542
-
a3f955f6 Make Filters/Sources module MPI independant #19100 Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Lucas Givord <lucas.givord@kitware.com> Reviewed-by:
Mathieu Westphal (Kitware) <mathieu.westphal@kitware.com> Reviewed-by:
Andrew Maclean <andrew.amaclean@gmail.com> Merge-request: !10547
-
b46651d1 Add a utility function to query OpenXR instance version d32293bd Enable switching from remoting XR runtime to default XR runtime dynamically Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Mathieu Westphal (Kitware) <mathieu.westphal@kitware.com> Merge-request: !10543
-
Alexy Pellegrini authored
Linker complained that a symbol was redefined when using these classes in a target while also linking against CommonCore: LNK2005 "vtkConstantImplicitBackend<char>" already defined in vtkToImplicitRamerDouglasPeuckerStrategy.obj This was caused by an explicit instanciation without proper extern template declaration.
-
Kitware Robot authored
-
- Sep 27, 2023
-
-
42f32a4a Fixing compiler warnings 21d17e83 Trying to fix dashboard issues a7835581 Fixing CMake dependencies 39ea45e2 Fixing vtkConduitSource to process AMR data in parallel Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Nicolas Vuaille <nicolas.vuaille@kitware.com> Reviewed-by:
Corey Wetterer-Nelson (Kitware) <c.wetterer-nelson@kitware.com> Merge-request: !10495
-
a079870e Add alembic and imath dependencies to linux ci images. Exclude others. 53a1d098 Fix duplicated doc comments for vtkCamera. 40cfcb13 Add the Alembic ".abc" format scene exporter. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Merge-request: !10415
-
59d69fac docs: replace relative with absolute URLs in Open{VR,XR} modules README 4e4a3625 docs: bring back develop_quickstart 28278edc docs: Add favicon on readthedocs Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Acked-by:
Jean-Christophe Fillion-Robin <jchris.fillionr@kitware.com> Merge-request: !10428
-
Aron Helser authored
-
8e8b0fef Move teleportation to interaction modes Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Tiffany Chhim <tiffany.chhim@kitware.com> Reviewed-by:
Mathieu Westphal (Kitware) <mathieu.westphal@kitware.com> Merge-request: !10546
-
Charly Bollinger authored
MPI tests will be built only if MPI is enabled, without requiring the whole module to depend on MPI.
-
Alexy Pellegrini authored
This doesn't need a full vtkOpenXRManager initialization, this function instantiates an independent xrInstance to query the version.
-
Alexy Pellegrini authored
The default OpenXRManagerConnection ensure that XR_RUNTIME_JSON environment variable is unset in Initialize. This enable multiple version queries or OpenXR render windows to use different OpenXR runtimes.
-
Kitware Robot authored
-
- Sep 26, 2023
-
-
Aron Helser authored
-
Aron Helser authored
Alembic is a scene description, and exports the current scene's rendered appearance. Polydata include texture coords and vertex colors, if available, and LUTs are exported as a texture .png file with the same file root, and "_texN.png" suffixes. The active camera includes its transform and clipping planes. Lights are not currently supported by Alembic, so are not included.
-
David Thompson authored
This changes which policies are marked "new." We need this bump to override cache variables with non-cache variables when configuring the `ThirdParty/token` module.
-
David Thompson authored
This is so that tokens can be in a shared library even when VTK itself is a set of static libraries. A shared library is required in order for strings to be interned in an object held in a class-static variable. If this class is in a static library, a different instance of the class-static variable is created inside each library that links to the library. Keeping the library dynamic means a single instance is available to all consumers. Our new third-party token library provides a singleton class to prevent crashes due to (1) uncontrolled order of static data initialization in static libraries and (2) duplication of global objects when multiple libraries (e.g., B, C, D) link to a static library (e.g., A) with global symbols. Each downstream library (B, C, D) will refer to its own copy of A's globals on some platforms. + No files are installed that might conflict with a "system" token library. + Header files are all installed in `include/vtk-9.3/token` and the library is told to add `include/vtk-9.3` to the installed header search path (so that `#include <token/X>` will work the same on both build and installed versions). + The namespace used is vtktoken so it is possible to link both vtktoken and a system-provided token library into the same executable.
-
David Thompson authored
Failures are intermittent and I haven't been able to reproduce.
-
David Thompson authored
… and make SMP test output more verbose. This prevents crashes in static builds since the order of initialization of these objects is not guaranteed.
-
David Thompson authored
Do not force shared with empscripten, since the platform currently disallows shared libraries. Also, since each static library is treated as a singleton and not linked multiple times, this should be safe.
-
c814e489 Relpace the fixed scalar with a 3D vector for the gravity Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Mathieu Westphal (Kitware) <mathieu.westphal@kitware.com> Merge-request: !10533
-
5c48d19f Fix degenerate cells for feature edges Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Merge-request: !10538
-
Mohamed Mssaouri authored
-
e18145d5 Fix VTK_ABI_NAMESPACE for QtQuick testing Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Mathieu Westphal (Kitware) <mathieu.westphal@kitware.com> Merge-request: !10516
-
f3b596f8 HTG: add changelog for HTG threshold changes 07e3f944 HTG: add testing for new threshold modes adb4839f HTGThreshold: add choice to use indexed arrays on input Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Merge-request: !10512
-
edada7a4 Add GetActualMemorySize support for vtkIndexedArray & vtkCompositeArray Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Thomas Galland <thomas.galland@kitware.com> Reviewed-by:
Julien Fausty <julien.fausty@kitware.com> Merge-request: !10518
-
97255de9 Fix crash in FDS Reader with empty smv file. d6319bcd Add test for empty smv file crash. Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Reviewed-by:
Thomas Galland <thomas.galland@kitware.com> Reviewed-by:
Lucas Givord <lucas.givord@kitware.com> Merge-request: !10534
-
Florian Maurin authored
Degenerate cells are cells for which one edge or face is collapsed. It means that a single cell contains duplicated ids. These duplicated ids were not correctly handled by vtkPolyData::GetCellEdgeNeighbors, but this is now fixed.
-
fbd1492f vtkUnstructuredGridGeometryFilter now supports degenerate cells Acked-by:
Kitware Robot <kwrobot@kitware.com> Tested-by:
buildbot <buildbot@kitware.com> Merge-request: !10544
-
Kitware Robot authored
-
- Sep 25, 2023
-
-
Florian Maurin authored
Degenerate cells are cells for which one edge or face is collapsed. It means that a single cell contains duplicated ids. In vtkUnstructuredGridGeometryFilter::InsertFace, the index of the smallest point cell id was used to positionned a cell relative to another one. But if the point is not unique, we will have multiple indices, and we can't use these indices for relative positioning. So instead of using the smallest point id, we use the smallest unique point id.
-