pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
paraview: Update to 5.13.2
Module Name: pkgsrc-wip
Committed By: Atsushi Toyokura <asteria.at%gmail.com@localhost>
Pushed By: steleto
Date: Wed Feb 19 23:16:34 2025 +0900
Changeset: c5d871c40f63d35bfaecf13e0e378e8a0a4604e4
Modified Files:
paraview/Makefile
paraview/PLIST
paraview/distinfo
paraview/patches/patch-VTK_ThirdParty_ioss_vtkioss_Ioss__FileInfo.C
Log Message:
paraview: Update to 5.13.2
ParaView 5.13.1 Release Notes
September 30, 2024
Bug fixes made since ParaView 5.13.0 are listed in this document.
- Update Insitu logic to use script filename (instead of full path)
when searching PYTHONPATH directories (details)
- Fixed CLI error loading multiple-file series (details)
- Fixed CLI error that was opening two copies of single file specified
in command line (details)
- Fixed pvbatch syntax warning messages (“invalid escape
sequence”) (details)
- Fixed spreadsheet view to update correctly when timestep is reset to
0 (details)
- Fixed problems loading state file when remote volume rendering is
used (details)
ParaView 5.13.0 Release Notes
August 23, 2024
Major changes made since ParaView 5.12.1 are listed in this
document. The full list of issues addressed by this release is
available here.
- New features
- Rendering enhancements
- Plugin updates
- Filter changes
- Changes in readers and writers
- Interface improvements
- Python scripting improvements
- Web updates
- Miscellaneous bug fixes
- Catalyst
- Developer notes
New features
GLTF importer
You can now import all or a subset of meshes from a GLTF 2.0 file into
ParaView as well as the material properties supported in VTK and
textures.
Use the import options dialog to make a selection of meshes that will
be imported.
New fullscreen mode for active view
The previously supported fullscreen mode sets the tabbed multi-view
widget fullscreen, that is, all views are maximized, including
separators and decoration.
ParaView now has a new fullscreen mode showing only the current active
view in fullscreen (shortcut: Ctrl + F11). The new mode is intended to
be closer to a “classical” fullscreen mode.
This is in part motivated by the need of some hardware (like the
zSpace Inspire) to have a strict fullscreen mode in order to display
the rendered scene correctly.
Select Blocks Through
ParaView’s RenderView now has a new selection action called “Select
Blocks Through”. This action allows you to select all blocks that are
inside the selected frustum. This is useful for selecting blocks that
are hidden behind other blocks.
MultiBlock Inspector support for coloring blocks by different arrays
In the previous version of ParaView, MultiBlock Inspector supported
changing only the following block properties:
- Visibility
- Color
- Opacity
All properties were previously set through controls in the multiblock
tree.
Now, the MultiBlock Inspector supports changing the following the
block properties:
- Visibility via a column in the multiblock tree
- Color
- Color Array
- Use Separate Color Map
- Interpolate Scalars Before Mapping
- Opacity
- Map Scalars
With the exception of the Visibility property, all the properties in
the new inspector are set in a small block color property panel below
the multiblock tree. The Visibility property is set via a checkbox in
the multiblock tree.
Each property has a state indicator and can be reset to the default
value. All block selectors also have a state and a reset button for
all of the properties of a block or parent of blocks.
To change a property of a block/blocks, the select the blocks in the
MultiBlock Inspector and then change the desired property in the block
color property panel. The change will be applied to all selected
blocks.
VTKHDF file writer
A VTKHDF writer and extractor are now available in ParaView.
Currently, this writer supports writing Unstructured Grid and
Polygonal Meshes, with time series support, as well as composite types
Partitioned Dataset Collection and Multi-block Dataset, without time
series support. This writer can also write compressed data to save
storage space.
The VTKHDF exporter writes time-dependent data as file series, not
using the time series support in the VTKHDF writer.
Command-line option to choose pvserver socket bind address
Add the --bind-address command-line option to pvserver. This option
allows changing the address bound to the server socket, so that it is
not necessarily exposed on all interfaces using INADDR_ANY (0.0.0.0).
Server-only command-line options configuration file
Settings are now supported for pvserver, pvrenderserver and
pvdataserver.
These executables parse a file named ParaViewServer-UserSettings.json
and look for settings named according to pvserver command-line
connection options.
This file is expected to look like this:
{
"cli-options" :
{
"connection" :
{
"connect-id" : 17,
"reverse-connection" : true,
"client-host" : "bailey"
}
}
}
The name of the setting is the “long” version of the option, without
the two leading dashes.
only connection options are supported.
Rendering enhancements
Geometry representations can compute surface normals
Geometry representations can now compute surface cell and point
normals by enabling the new Compute Point Normals property. This can
be a convenience to avoid the need to add an Extract Surface filter
followed by a Generate Surface Normals filter. This option is
available for the Surface, Surface with Edges, and the Surface LIC
representations.
Faster time to first render with static meshes
ParaView now uses a cache to save time when computing surfaces to
display. If the surface mesh is unchanged since the last time it was
extracted and caching is enabled, the extraction step simply uses the
cached result, saving significant work in the steps leading up to the
first render after a change is made.
This feature is not available in distributed execution.
New Polar Grid annotation in RenderViews
RenderViews now have a new annotation available: the Polar Grid.
Similar to the Polar Axes already existing the Representation level,
the Polar Grid can display axes and arcs, annotated with polar
coordinates.
Like the Legend Grid, this new annotation is drawn in the screen
space. Thus, it is only available when Camera Parallel Projection is
enabled.
Python block coloring functionality
ParaView now has new block coloring capabilities thanks to additional
block-specific properties and Python functions that apply to
representations. New Python functions including ColorBlocksBy() and
GetBlockColorTransferFunction() are also available to script block
coloring options. An example can be found in
Clients/ParaView/Testing/Python/ColorBlockBy.py test in ParaView’s
source code.
Surface representation Texture Transform property
The new Texture Transform property has been added to translate,
rotate, and scale texture coordinates when a texture is applied to an
object. Since this transform can flip a texture by using a negative
scale factor, the Flip Textures property has been deprecated.
Configurable maximum radius for Polar Axes
You can now configure a custom maximum radius for the Polar Axes. Note
that by default the custom maximum radius is off and therefore it is
automatically computed relative to the pole position.
Constant shading per object feature
Before this feature, you could disable the lighting only for a whole
view using the Light Kit checkbox inside the Light Inspector. This
change allows you to disable lighting for a single source with a new
display property named Disable Lighting.
Plugin updates
zSpace Inspire support in ParaView
The zSpace plugin now uses a dedicated render window class to support
the specific rendering mode of the latest zSpace hardware. Unlike
previous models, the zSpace Inspire does not rely on quad buffering to
display stereo content. It uses its dedicated stereo display instead
to perform stereo rendering. In order to have a working stereo effect,
the current active view should be shown in fullscreen. Note that the
zSpace Stereo Core Compatibility API should be used with this display.
Filter changes
Axis-Aligned Slice filter
The Axis-Aligned Slice filter is now available in ParaView.
This filter produces axis-aligned slices of the input data. The output
data type is the same as the input, effectively reducing the
dimensionality of the input data by one.
For now, this filter supports Hyper-tree Grids and Overlapping AMR
Datasets as input data, and Axis-Aligned plane as cut function. In the
case of Hyper-tree Grids, it also supports producing multiple slices
at once.
This filter also supports composite datasets of Hyper-tree Grids. In
such cases, it will iterate over each Hyper-tree Grid and generate a
new hierarchy with added nodes containing the slices.
Please note that usages of Axis-Aligned plane in the Slice and Slice
With Plane filters are deprecated in favor of this new dedicated
filter.
Force Static Mesh filter
Introduce a new filter, named Force Static Mesh, that explicitly
advertises that a mesh has not been modified. This information can be
exploited by subsequent filters like the Surface Filter for
performance and memory optimizations.
Feature Edges filter available for Hyper-tree Grids
You can now apply the Feature Edges filter in ParaView to Hyper-tree
Grids. The Feature Edges representation now works correctly with
Hyper-tree Grids as well.
New Compute Visible Leaves Size filter for Hyper-tree Grids
A new Hyper-tree Grid utility filter is available: HyperTreeGrid
Visible Leaves Size. This filter creates two new cell fields:
- ValidCell has a (double) value of 1.0 for visible (not ghost, non
masked) leaf cells, and 0.0 for the others.
- CellSize‘s value corresponds to the volume of the cell in 3D, or
area in 2D.
Add Hyper-tree Grid support to various data generation filters
Following data generation filters now support Hyper-tree Grids as input:
- Point And Cell Ids
- Global Point And Cell Ids
- Process Ids
- Random Attributes
Note that only cell data can be generated for Hyper-tree Grids.
Mask generation for the Hyper Tree Grid (Random) source
You can now generate a mask for the Hyper Tree Grid (Random) source,
it can be controlled by the property Masked Fraction that controls the
spatial proportion of the Hyper-tree Grid that will be masked. This
value is a target and the actual masked fraction of the generated
Hyper-tree Grid can differ up to an error margin, depending on the
number of trees and the branching factor. Which means a masked
fraction with a value near 1 can lead to a not completely masked
Hyper-tree Grid, since the error margin still applies for this value.
Multi-slice support in Slice filter for Hyper-tree Grids
The Slice filter can now generate mutliple slices at once when the
input is a Hyper-tree Grid.
Please note that this feature is not available when the Axis Aligned
Plane is selected as the cut function, since this option is deprecated
in the Slice filter. You can now use the dedicated Axis-Aligned Slice
filter to do so.
More ghost-related filters are available for Hyper-tree Grids
The Extract Ghost Cells and Remove Ghost Cells filters can now be used
for Hyper-tree Grids. Note that these filters mask cells and do not
impact the number of cells of the input Hyper-tree Grids.
New Critical Time filter
Given an input that changes over time, the Critical Time filter
generates a new data array containing time step values. These values
correspond to the time at which a specified threshold criterion has
been met for a given point/cell array (at each point/cell
respectively).
To do so, the filter needs to process all available timesteps. The
output of the filter is not temporal.
Like in the Threshold filter, the threshold criterion can take three
forms:
- greater than a particular value
- less than a particular value
- between two values
New Temporal Smoothing filter
ParaView now has a Temporal Smoothing filter that smooths point and
cell data from a temporal source by averaging the values over a
temporal window defined by the filter’s Temporal Window Half Width.
Angle-based and custom field strategies for polyline decimation
The Decimate Polyline filter now support multiple decimation
strategies through a Decimation Strategy property:
- DecimationAngleStrategy: use the angle between three consecutive
points as error metric
- DecimationDistanceStrategy (default, identical to previous
versions): use the distance between consecutive points as error
metric
- DecimationCustomFieldStrategy: use values stored in a custom
PointData array to compute the error between three consecutive
points. The name of this array must be defined using the Field Name
property.
Changes in readers and writers
Add ERF Reader
You can now read ERF HDF5 files into ParaView. The reader supports
version 1.2 of the ERF HDF5 spec, specifically:
- Reading a selected stage.
- Reading the ‘constant’ group.
- Reading the ‘singlestate’ group.
The output of the reader is a Partitioned Dataset Collection composed
of multiple Unstructured Grids for the ‘constant’ or ‘singlestate’
groups.
IOSS reader caching option
The IOSS Reader now has a Caching property. When enabled, the reader
will cache the mesh data in memory across multiple time
steps. Previously, when the option was not present, the reader would
always cache data, which could lead to excessive memory usage. Now,
the default behavior is to not cache.
Fixes for the openPMD reader
Data layout issues fixed
The openPMD format allows storage of multidimensional arrays (meshes)
in either Fortran or C data orders with arbitrary axis labeling. Based
on the data order, it may be necessary to transpose the data so that
ParaView can correctly interpret the meshes.
- For C data order, the VTK axis ordering is expected to be (x, y, z)
- For F data order, the VTK axis ordering is expected to be (z, y, x)
Transposes are necessary if there is a mismatch in the expected axis
ordering. This also fixes problems with 1D/2D meshes that require
handling the transposes differently than 3D meshes.
Avoid scaling meshes and particle records when possible
In files with unitSI equal to 1.0, avoid scaling meshes. This is often
the case for non-floating point records and unintentionally casts
their type to double when we mean to stay in integer or unsigned
integer (e.g., particle id) scales. Thus, this fixes issues with the
latter and avoids unnecessary operations on large data sets.
Cell-centered data support in FDS reader
The FDS reader now correctly supports reading slice and boundaries
files (.sf & .bf), for both point and cell-centered data. Before these
changes, only point data for slices was correctly parsed.
Option in the GLTFExporter to avoid saving NaN color in exported color
map textures
A new property has been added to the GLTF Exporter. Save NaN Value
controls whether the exporter should save the NaN color in the
exported texture. If enabled, the NaN color is saved as a second row
in the color map texture which might affect how the texture is
processed by the application that loads it.
Enable array selection in Fides reader
You can now choose which arrays should be loaded with the Fides
reader. The arrays available to load must still be specified in the
JSON data model file, but you can now enable/disable loading those
arrays through the GUI.
Interface improvements
Filter renaming
In in effort to improve ParaView’s usability, a number of filters
have been renamed to be more concise and meaningful. The list of
filters whose names have changed is provided below.
Previous name New name
------------------------------------- ----------------------------
Ghost Cells Generator Ghost Cells
Add Field Arrays Field Arrays From File
Append Arc Length Polyline Length
Append Location Attributes Coordinates
Block Scalars Block Ids
Compute Connected Surface Properties Connected Surface Properties
Generate Global Ids Global Point And Cell Ids
Generate Ids Point And Cell Ids
Generate Process Ids Process Ids
Generate Spatio Temporal Harmonics Spatio Temporal Harmonics
Generate Surface Normals Surface Normals
Generate Surface Tangents Surface Tangents
Level Scalars (OverlappingAMR) Overlapping AMR Level Ids
Searching for the old names will continue to work for ParaView 5.13.0,
and full backwards compatibility with state files and Python scripts
from versions of ParaView before version 5.13.0 has been provided.
Filter categories are configurable
The ParaView Filters menu organizes filters into a list of
categories. Those submenus can now be customized!
Go to the Tools -> Configure Categories dialog to create your own tree
of categories. There you can create and rename categories, move
filters around, set up icons, and event create toolbar from an
existing category.
Some predefined categories have a specific meaning (and thus cannot be
deleted):
- Alphabetical category lists as usual every filter.
- Miscellaneous section contains filters that are not part of any
other category.
- Favorites is now its own category, so you can configure it the same
way.
Improved quick launch window
To add filters, sources, and extractors, you can use ParaView’s quick
launch window (ctrl + space). In this window you can now see the
documentation for the selected filter and the requirements on types of
input for the selected filter. Moreover, you no longer need to know
the filter actual name – the window also suggests filters based on
search matches in their documentation.
Enhanced Edit Macros dialog
You can now edit the names and tooltip text of a Python macro in the
Edit Macros dialog. You can also open up the Python script associated
with a macro in the code editor by clicking on the button at the end
of the macro name column.
Icon Browser: add an icon for your macros
ParaView now offers an interface to select an icon for Macro buttons
in the user interface. You can import your own image file or reuse one
that ParaView already provides. ParaView stores the imported images
under a new Icons directory, under your user directory.
Python scripting improvements
Display the prompt text from Python input function in the input dialog
The prompt text argument of a call to the input function from a Python
script is now displayed in the dialog that accepts user input. Prior
to this change, the argument was only printed to the Output Messages
window.
New --venv command-line argument to specify a virtual environment
All ParaView executables have a new --venv command-line argument for
ParaView builds where Python is enabled. The path supplied for this
argument is the path to a virtual environment that will be activated
for the Python environment in these programs.
Usage example:
pvpython --venv=/absolute/path/to/environment -m my_awesome_module
where my_awesome_module is installed in the Python environment that is
loaded.
The virtual environment will be available in Programmable Source,
Programmable Filter, and the Python Shell.
Web updates
Removed web applications divvy, lite, and visualizer
divvy, lite and visualizer are not bundled with ParaView anymore but
distributed as separate web applications from these repositories:
- https://kitware.github.io/divvy/
- https://kitware.github.io/paraview-lite/
- https://kitware.github.io/visualizer/
Miscellaneous bug fixes
Handle semicolon and hash characters in the Recent Files menu
ParaView would crash on startup if a file was opened with a semicolon
“;” in the filename. The Recent Files menu and saved settings uses
“;” as a record separator, and hash “#” as a server name
indicator. These characters are now encoded in the settings file to
avoid incorrect interpretation.
Catalyst
Updates listed below refer to ParaView’s Catalyst 2 implementation.
Catalyst pipeline selection
Support for which Catalyst pipelines to execute has been added. This
includes Python script pipelines as well as precompiled pipelines. The
Python script pipelines are configured with:
node['catalyst/scripts/aname'] = afile.py
where aname is the name of the pipeline. Precompiled pipelines are
configure with:
node["catalyst/pipelines/0/type"] = "io"
node["catalyst/pipelines/0/filename"] = "foo-%04ts.vtpd"
node["catalyst/pipelines/0/channel"] = "input"
where 0 is the name of the pipeline.
Pipelines can be selected by listing them under the
catalyst/state/pipelines node such as
node['catalyst/state/pipelines/0'] = 'aname'
Note that the value of the node (aname) is what matters and not the
name of the node (0). It is possible to turn off all of the pipelines
by making pipelines a leaf node such as:
node['catalyst/state/pipelines'] = 0
If catalyst/state/pipelines does not exist, Catalyst will, by default,
execute all pipelines.
Custom catalyst_results in Catalyst scripts
You can now define custom catalyst_results(info) functions in Catalyst
scripts which will be executed when the simulation calls
catalyst_results. The Conduit node passed as input to the call from
the simulation side is available via info.catalyst_params.
Catalyst direct access to Conduit during execution
The input parameters of catalyst_execute are now accessible as a
read-only Conduit node inside a catalyst script. You can now perform
any kind of analysis directly on the data passed by the simulation.
Extractors for Catalyst steering
Catalyst’s “steering” capabilities can send data back to the
simulation in order to “steer” it. In order to use the steering, the
simulation used to send an XML file specifying a
vtkSteeringDataGenerator proxy and properties to be filled by Paraview
Catalyst.
While this still works, we introduce Catalyst steering extractors, a
new kind of extractor acting as “sinks” in the visualization
pipeline. Calling catalyst_results from the simulation will trigger
these sinks, and their input dataset will be serialized to Conduit’s
mesh blueprint and sent back to the simulation in the results Conduit
node. This special kind of extractor needs to be created in the
Catalyst Python pipeline script. They are not associated to a trigger
and a writer like other extractors are. They are created by the
extracts controller but managed externally by the in situ helper.
Example Catalyst pipeline script:
# Data is provided by the simulation.
producer = TrivialProducer(registrationName="grid")
# Perform a reduction on the input data.
sliced = Slice(Input=producer, SliceType="Plane")
# Create a steering extractor from the slice.
steering = CreateExtractor('steering', sliced, registrationName='steered_slice')
This script is executed as usual when catalyst_execute is called, but
the extraction happens only when the simulation calls
catalyst_results. This feature can be used to perform a reduction on
input data, for example, and get the result in the simulation
directly.
Developer notes
Fix the behavior of vtkCLIOptions::SetStopOnUnrecognizedArgument
SetStopOnUnrecognizedArgument was behaving in an inverted way
according to its name and documentation. This was fixed and
documentation was clarified.
Now, vtkCLIOptions::SetStopOnUnrecognizedArgument(true) will indeed
stop the parsing on unrecognized arguments.
See https://github.com/CLIUtils/CLI11/issues/1052 for more info.
Building against external VTK
Support has been added for compiling against and using an external
VTK. The version (git hash) of the external VTK has to match the
version of the VTK sub-module included in the version of ParaView
being compiled. While this is not enforced, it is likely that you
would get a compilation error or a crash if you try to use ParaView
with a differnet version of VTK than the one it was tested with (the
version of the VTK submodule).
This feature is enabled with the PARAVIEW_USE_EXTERNAL_VTK CMake
option enabled. VTK_DIR can be used to specify the location for the
config file of the VTK install, such as:
<vtk_install_dir>/lib/cmake/vtk-9.3.
Depending on what is enabled in ParaView, certain features need to be
provided by the external VTK. The features required by ParaView but
not provided by the VTK install, would be printed by CMake at
configure time in a format that can be copied and pasted in a VTK
reconfigure command that would compile those features in VTK.
Specification of backend when using VTK-m w/ Kokkos
This change propogates build flags from ParaView to VTK and affects
how accelerated filters are built using VisKores (previously
VTK-m). It does away with the requirement of using flags like
PARAVIEW_USE_HIP when VTK-m is built with the necessary Kokkos
backend. This also future-proofs the specification for backends. Two
new flags are introduced PARAVIEW_USE_KOKKOS and
PARAVIEW_KOKKOS_BACKEND — the first flag is considered ON
automatically if the backend flag is provided.
Here is how you can build with different backends
- PARAVIEW_USE_CUDA — use the native CUDA support from VTK-m
- PARAVIEW_USE_KOKKOS + PARAVIEW_KOKKOS_BACKEND=CUDA or
PARAVIEW_KOKKOS_BACKEND=CUDA will use Kokkos with CUDA backend
- PARAVIEW_USE_KOKKOS + PARAVIEW_KOKKOS_BACKEND=SYCL or
PARAVIEW_KOKKOS_BACKEND=SYCL will use Kokkos with SYCL backend
- PARAVIEW_USE_KOKKOS + PARAVIEW_KOKKOS_BACKEND=HIP or
PARAVIEW_KOKKOS_BACKEND=HIP will use Kokkos with HIP backend
- PARAVIEW_USE_KOKKOS will use Kokkos with Serial backend
Proxy deprecation
Full proxy deprecation is now possible, thanks to improvement in the
Python backward compatibility module. (see
_backwardscompatibilityhelper.get_deprecated_proxies()). This
mechanism is useful for renaming proxies, for example.
Add support of VTK serialization
You can now serialize and deserialize VTK objects using the VTK Object
Manager API. You can enable this feature by turning on
PARAVIEW_USE_SERIALIZATION setting in CMake.
New mechanism to delay plugin loading
A new mechanism has been added to the plugin configuration files. It
is now supported to load plugins only when needed by a proxy. See the
specification of this mechanism in the PluginHowTo.md.
New WarnOnPropertyChange string property widget hint
You can now display a warning message box when a StringVectorProperty
has been changed using a hint. Set the onlyonce attribute to only show
the message on the first property change. The Text tag specifies the
message box title and body text.
For example:
<Hints>
<WarnOnPropertyChange onlyonce="true">
<Text title="Warning: Potentially slow operation">
OSPRay pathtracer may need to transfer default materials from
client to server. This operation can take a few seconds in
client-server mode.
</Text>
</WarnOnPropertyChange>
</Hints>
Source code deprecation and removals
Deprecations new in 5.13
- The class pqAddToFavoritesReaction has been deprecated in favor of
the new Categories mechanism. See pqProxyCategory.
- In pqCategoryToolbarsBehavior, the protected prepareForTest() slot
has been deprecated as it was mostly unused.
- In pqColorMapEditor, the protected member function
setDataRepresentation(pqDataRepresentation* repr, bool forceUpdate =
false) has been deprecated in favor of
setRepresentation(pqDataRepresentation* repr, bool forceUpdate =
false) in the same class.
- In pqDataAssemblyPropertyWidget, the selectorColors,
compositeIndexColors, selectorOpacities, compositeIndexOpacities
properties and their associated setters (setSelectorColors(),
setCompositeIndexColors(), setSelectorOpacities(), and
setCompositeIndexOpacities()), variant list
getters (selectorColorsAsVariantList,
compositeIndexColorsAsVariantList, selectorOpacitiesAsVariantList,
and compositeIndexOpacitiesAsVariantList), and notification
signals (colorsChanged, and opacitiesChanged) are no longer used.
- In pqLiveSourceBehavior, the pause(), resume(), and isPaused()
static member functions are deprecated in favor of non-static member
functions of the same name in pqLiveSourceManager.
- The class pqManageFavoritesReaction has been deprecated in favor of
the new Categories mechanism. See pqConfigureCategories instead.
- In pqProxyGroupMenuManager, vtkSMProxy* getPrototype(QAction*
action) const has been deprecated in favor of static vtkSMProxy*
GetProxyPrototype(QAction*), bool hideForTests(const QString&) const
and void setEnabled(bool) have been deprecated because they were
mostly unused, void populateFavoritesMenu(), void
loadFavoritesItems(), and QAction* getAddToFavoritesAction(const
QString& path) have been deprecated because favorites are now a
category configurable like other categories, and the protected
Enabled member variable has been deprecated because it is unused.
- The class pqFavoritesDialog has been replaced by the new Categories
mechanism. See pqConfigureCategories instead.
- The class pqQuickLaunchDialog has been deprecated. Use
pqQuickLaunchDialogExtended instead.
- The class pqWaitCursor has been deprecated. Use
pqScopedOverrideCursor(Qt::WaitCursor) instead.
- In vtkInitializationHelper, static bool InitializeMiscellaneous(int
type) has been deprecated. Use InitializeSettings and
InitializeOthers instead.
- In vtkGeometryRepresentation, void SetFlipTextures(bool) has been
deprecated. Use SetTextureTransform(vtkTransform*) instead.
- In vtkPolarAxesRepresentation, void SetEnableCustomRadius() and bool
GetEnableCustomRadius() have been removed. Use void
SetEnableCustomMinRadius(bool) and bool GetEnableCustomMinRadius()
instead.
- In vtkSMColorMapEditorHelper, static vtkSMProxy*
GetLUTProxy(vtkSMProxy* proxy, vtkSMProxy* view) has been
deprecated. Use static vtkSMProxy* GetLookupTable(vtkSMProxy* proxy,
vtkSMProxy* view) instead.
- In vtkSMPVRepresentationProxy, SetLastLUTProxy(vtkSMProxy* proxy),
vtkSMProxy* GetLastLUTProxy(), and vtkSMProxy*
GetLUTProxy(vtkSMProxy* view) have been deprecated. Use void
SetLastLookupTable(vtkSMProxy* proxy), vtkSMProxy*
GetLastLookupTable(), and vtkSMProxy* GetLUTProxy(vtkSMProxy* view),
respectively, instead.
- In the Slice With Plane filter (VTK class vtkPVPlaneCutter), the
“Axis-Aligned” plane cut function is deprecated. Use the
Axis-Aligned Slice filter (VTK class vtkAxisAlignedCutter) instead.
- In vtkPVGeometryFilter, the information keys POINT_OFFSETS(),
VERTS_OFFSETS(), LINES_OFFSETS(), POLYS_OFFSETS(), and
STRIPS_OFFSETS() have been deprecated. They are not used anymore.
Removals
- The SurfaceLIC plugin has been removed (deprecated in 5.11). The
Surface LIC representation is still available in ParaView.
- In pqAnimationManager, the beginPlay() and endPlay() argument-less
signals have been removed (deprecated in 5.11). Use the variants
with vtkCallback APIs instead.
- In pqAnimationManager, the onBeginPlay() and onEndPlay()
argument-less slots have been removed (deprecated in 5.11). the
variants with vtkCallback APIs instead.
- In pqPropertiesPanel, the setAutoApply() and autoApply() methods
have been removed (deprecated in 5.11). Use the methods on
vtkPVGeneralSettings instead.
- In pqPropertiesPanel, the setAutoApplyDelay() and autoApplyDelay()
methods have been removed (deprecated in 5.11). Use the methods on
pqApplyBehavior instead.
- pqVCRController::playing(bool) signal has been removed (deprecated
in 5.11). Use the ::playing(bool, bool) signal instead.
- In pqAnimationScene, the beginPlay() and endPlay() signals have been
removed (deprecated in 5.11). Use the variants with vtkCallback APIs
instead.
- In pqRenderView, the selectOnSurface() method has been removed in
favor of selectCellsOnSurface and selectFrustum in favor of
selectFrustumCells (deprecated in 5.11).
- pqServerResource::sessionServer() and ::setSessionServer() methods
have been removed (deprecated in 5.11). Any calls should just be
removed and the resource used directly instead.
- Removed pqTimelineScrollbar (deprecated in 5.11). Use
pqTimeInspectorWidget instead.
- Removed vtkPVPluginsInformation::PluginRequirementsSatisfied()
method (deprecated in 5.11). Use
vtkSMProxyManager::SatisfyPluginRequirements() instead.
- Removed vtkPVRenderView VolumeAnisotropy methods (deprecated in
5.11). Use vtkVolumeProperty‘s ScatteringAnisotropy methods
instead.
- Removed vtkPVGeometryFilter UseStrips and ForceUseStripsOn
methods (deprecated in 5.11).
- In paraview.simple, remove the Show3DWidgets and Hide3DWidgets
functions (deprecated in 5.11). Use ShowInteractiveWidgets and
HideInteractiveWidgets instead.
Plugin CMake API has new USE_FILE_SETS option
The paraview_plugin_build CMake API now supports the USE_FILE_SETS
argument to use file sets when building internal modules.
New example of plugin using Qt on server side, without PV client
Plugins can make use of Qt classes and resources without using
ParaView Qt modules. This can be the case for instance in a module
using Qt core features. The module should be built even if ParaView
was not built with Qt support. This is typically the case on the
server side, where the graphical interface is not enabled.
A new plugin example named ServerSideQt now illustrates how to make
use of this new capability.
vtkPVVersion
Most of the version macros have been relocated to
vtkPVVersionQuick.h. The new PARAVIEW_VERSION_EPOCH macro is defined
as the actual PARAVIEW_VERSION_PATCH value for release-track
development and a “high” value for future ParaView release
development (i.e., the next minor version bump). The actual patch
number, and PARAVIEW_VERSION_FULL values are available in
vtkPVVersion.h. A new PARAVIEW_VERSION_NUMBER_QUICK macro provides the
ParaView version as a comparable value with PARAVIEW_VERSION_CHECK
using the PARAVIEW_VERSION_EPOCH instead of
PARAVIEW_VERSION_PATCH. The intent is to reduce the rebuild frequency
needed for the nightly build version bump for the in-development
source.
vtkWrapClientServer warnings
The vtk_module_wrap_client_server CMake API now supports adding
warning flags when wrapping. Currently supported is -Wempty to warn
when a wrapping generates no usable code.
Widget height hints on properties displayed with a QComboBox
You can now specify WidgetHeight hints on properties that use a
QComboBox such as EnumerationDomain, ProxyListDomains or
StringListDomain. This hint will control the maximum allowed number of
items in the combobox before a scroll bar appears.
<StringVectorProperty command="" name="...">
<StringListDomain name="array_list">
<RequiredProperties>
<Property function="..." name="..."/>
</RequiredProperties>
</StringListDomain>
<Hints>
<!-- This tag sets the height of the QComboBox -->
<WidgetHeight number_of_rows="5" />
</Hints>
</StringVectorProperty>
Introducing Emulated Time Algorithm using LiveSources
LiveSource capabilities have been expanded with a new emulated time algorithm.
Once you’ve inherited your temporal algorithm from
vtkEmulatedTimeAlgorithm, you can use the LiveSource concept to
synchronize the algorithm’s timesteps on a “Real Time” interval (in
seconds). It will skip frames if the pipeline processing does not keep
up.
An example scenario for this algorithm would be to replay a LiveSource
stream from a recorded file while maintaining the original conditions
and playback speed.
To implement this behavior, inherit your algorithm from
vtkEmulatedTimeAlgorithm and define the proxy as a LiveSource with the
emulated_time attribute.
<Hints>
<LiveSource interval="100" emulated_time="1" />
</Hints>
vtkPVGeometryFilter: Support creating vtkPartitionedDataSetCollection
as output
The vtkPVGeometryFilter can now produce
vtkPartitionedDataSetCollection as output. This is useful when the
input is a vtkPartitionedDataSet, vtkUniformGridAMR, or
vtkPartitionedDataSetCollection.
Category XML has hide_for_tests option removed
The hide_for_tests attribute in Category XML is no longer supported.
Fix the behavior of vtkCLIOptions::SetStopOnUnrecognizedArgument
SetStopOnUnrecognizedArgument was behaving in an inverted way
according to its name and documentation. This was fixed and
documentation was clarified.
Now, vtkCLIOptions::SetStopOnUnrecognizedArgument(true) will indeed
stop the parsing on unrecognized arguments.
See https://github.com/CLIUtils/CLI11/issues/1052 for more info.
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=c5d871c40f63d35bfaecf13e0e378e8a0a4604e4
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
paraview/Makefile | 14 +-
paraview/PLIST | 658 +++++++++++++++++----
paraview/distinfo | 8 +-
...ch-VTK_ThirdParty_ioss_vtkioss_Ioss__FileInfo.C | 6 +-
4 files changed, 557 insertions(+), 129 deletions(-)
diffs:
diff --git a/paraview/Makefile b/paraview/Makefile
index f3e477f616..88d007aa65 100644
--- a/paraview/Makefile
+++ b/paraview/Makefile
@@ -1,9 +1,10 @@
# $NetBSD$
-DISTNAME= ParaView-v5.12.1
+DISTNAME= ParaView-v5.13.2
PKGNAME= ${DISTNAME:S/ParaView-v/paraview-/1}
CATEGORIES= math
-MASTER_SITES= https://www.paraview.org/files/v5.12/
+PV_VER= ${PKGVERSION_NOREV:C/\.[0-9]+$//}
+MASTER_SITES= https://www.paraview.org/files/v${PV_VER}/
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= https://www.paraview.org/
@@ -26,7 +27,7 @@ CMAKE_CONFIGURE_ARGS+= -DVTK_MODULE_USE_EXTERNAL_VTK_doubleconversion=ON
CMAKE_CONFIGURE_ARGS+= -DVTK_MODULE_USE_EXTERNAL_VTK_eigen=ON
CMAKE_CONFIGURE_ARGS+= -DVTK_MODULE_USE_EXTERNAL_VTK_expat=ON
CMAKE_CONFIGURE_ARGS+= -DVTK_MODULE_USE_EXTERNAL_VTK_exprtk=OFF
-CMAKE_CONFIGURE_ARGS+= -DVTK_MODULE_USE_EXTERNAL_VTK_fmt=ON
+CMAKE_CONFIGURE_ARGS+= -DVTK_MODULE_USE_EXTERNAL_VTK_fmt=OFF
CMAKE_CONFIGURE_ARGS+= -DVTK_MODULE_USE_EXTERNAL_VTK_freetype=ON
CMAKE_CONFIGURE_ARGS+= -DVTK_MODULE_USE_EXTERNAL_VTK_gl2ps=ON
CMAKE_CONFIGURE_ARGS+= -DVTK_MODULE_USE_EXTERNAL_VTK_glew=ON
@@ -61,9 +62,9 @@ PY_PATCHPLIST= yes
MAKE_ENV+= LD_LIBRARY_PATH=${WRKSRC}/${CMAKE_BUILD_DIR}/lib
-PRINT_PLIST_AWK+= {gsub(/5.12/, "$${PV_VER}");}
+PRINT_PLIST_AWK+= {gsub(/${PV_VER}/, "$${PV_VER}");}
-PLIST_SUBST+= PV_VER=5.12
+PLIST_SUBST+= PV_VER=${PV_VER}
.include "../../lang/python/extension.mk"
@@ -86,14 +87,13 @@ PLIST_SUBST+= PV_VER=5.12
.include "../../math/py-numpy/buildlink3.mk"
.include "../../multimedia/libogg/buildlink3.mk"
.include "../../multimedia/libtheora/buildlink3.mk"
+.include "../../print/libharu/buildlink3.mk"
.include "../../textproc/expat/buildlink3.mk"
-.include "../../textproc/fmtlib/buildlink3.mk"
.include "../../textproc/jsoncpp/buildlink3.mk"
.include "../../textproc/libxml2/buildlink3.mk"
.include "../../textproc/nlohmann-json/buildlink3.mk"
.include "../../textproc/pugixml/buildlink3.mk"
.include "../../textproc/utf8-cpp/buildlink3.mk"
-.include "../../wip/libharu/buildlink3.mk"
.include "../../x11/libXaw/buildlink3.mk"
.include "../../x11/libXt/buildlink3.mk"
.include "../../x11/qt5-qtbase/buildlink3.mk"
diff --git a/paraview/PLIST b/paraview/PLIST
index d2898a271d..59446a36a8 100644
--- a/paraview/PLIST
+++ b/paraview/PLIST
@@ -16,6 +16,7 @@ bin/vtkWrapHierarchy-pv${PV_VER}
bin/vtkWrapJava-pv${PV_VER}
bin/vtkWrapPython-pv${PV_VER}
bin/vtkWrapPythonInit-pv${PV_VER}
+bin/vtkWrapSerDes-pv${PV_VER}
include/paraview-${PV_VER}/CAdaptorAPI.h
include/paraview-${PV_VER}/CPythonAdaptorAPI.h
include/paraview-${PV_VER}/DICOMAppHelper.h
@@ -30,6 +31,7 @@ include/paraview-${PV_VER}/FortranAdaptorAPI.h
include/paraview-${PV_VER}/FortranAdaptorAPIMangling.h
include/paraview-${PV_VER}/FortranPythonAdaptorAPI.h
include/paraview-${PV_VER}/FortranPythonAdaptorAPIMangling.h
+include/paraview-${PV_VER}/GLTFSampler.h
include/paraview-${PV_VER}/Grid.h
include/paraview-${PV_VER}/Grid.txx
include/paraview-${PV_VER}/H5RageAdaptor.h
@@ -204,7 +206,6 @@ include/paraview-${PV_VER}/SMP/STDThread/vtkSMPThreadPool.h
include/paraview-${PV_VER}/SMP/STDThread/vtkSMPToolsImpl.txx
include/paraview-${PV_VER}/SMP/Sequential/vtkSMPThreadLocalImpl.h
include/paraview-${PV_VER}/SMP/Sequential/vtkSMPToolsImpl.txx
-include/paraview-${PV_VER}/VerdictVector.hpp
include/paraview-${PV_VER}/catalyst.mod
include/paraview-${PV_VER}/catalyst_python.mod
include/paraview-${PV_VER}/fv_create_data.h
@@ -231,19 +232,14 @@ include/paraview-${PV_VER}/pqAnimatablePropertiesComboBox.h
include/paraview-${PV_VER}/pqAnimatableProxyComboBox.h
include/paraview-${PV_VER}/pqAnimatedExportReaction.h
include/paraview-${PV_VER}/pqAnimationCue.h
-include/paraview-${PV_VER}/pqAnimationKeyFrame.h
include/paraview-${PV_VER}/pqAnimationManager.h
-include/paraview-${PV_VER}/pqAnimationModel.h
include/paraview-${PV_VER}/pqAnimationProgressDialog.h
include/paraview-${PV_VER}/pqAnimationScene.h
include/paraview-${PV_VER}/pqAnimationShortcutDecorator.h
include/paraview-${PV_VER}/pqAnimationShortcutWidget.h
include/paraview-${PV_VER}/pqAnimationTimeToolbar.h
include/paraview-${PV_VER}/pqAnimationTimeWidget.h
-include/paraview-${PV_VER}/pqAnimationTrack.h
include/paraview-${PV_VER}/pqAnimationTrackEditor.h
-include/paraview-${PV_VER}/pqAnimationViewWidget.h
-include/paraview-${PV_VER}/pqAnimationWidget.h
include/paraview-${PV_VER}/pqAnnotationsModel.h
include/paraview-${PV_VER}/pqApplicationComponentsInit.h
include/paraview-${PV_VER}/pqApplicationComponentsModule.h
@@ -262,6 +258,7 @@ include/paraview-${PV_VER}/pqAutoStartInterface.h
include/paraview-${PV_VER}/pqAxesToolbar.h
include/paraview-${PV_VER}/pqBackgroundEditorWidget.h
include/paraview-${PV_VER}/pqBlockContextMenu.h
+include/paraview-${PV_VER}/pqBlockProxyWidget.h
include/paraview-${PV_VER}/pqBoolPropertyWidgetDecorator.h
include/paraview-${PV_VER}/pqBoxChartView.h
include/paraview-${PV_VER}/pqBoxPropertyWidget.h
@@ -327,6 +324,8 @@ include/paraview-${PV_VER}/pqComponentsInit.h
include/paraview-${PV_VER}/pqComponentsModule.h
include/paraview-${PV_VER}/pqComponentsTestUtility.h
include/paraview-${PV_VER}/pqCompositePropertyWidgetDecorator.h
+include/paraview-${PV_VER}/pqConfigureCategoriesDialog.h
+include/paraview-${PV_VER}/pqConfigureCategoriesReaction.h
include/paraview-${PV_VER}/pqConnect.h
include/paraview-${PV_VER}/pqConsoleWidget.h
include/paraview-${PV_VER}/pqConsoleWidgetEventPlayer.h
@@ -403,6 +402,7 @@ include/paraview-${PV_VER}/pqExpressionsDialog.h
include/paraview-${PV_VER}/pqExpressionsManager.h
include/paraview-${PV_VER}/pqExpressionsTableModel.h
include/paraview-${PV_VER}/pqExpressionsWidget.h
+include/paraview-${PV_VER}/pqExtendedSortFilterProxyModel.h
include/paraview-${PV_VER}/pqExtractor.h
include/paraview-${PV_VER}/pqExtractorsMenuReaction.h
include/paraview-${PV_VER}/pqFavoritesDialog.h
@@ -439,11 +439,15 @@ include/paraview-${PV_VER}/pqHierarchicalGridWidget.h
include/paraview-${PV_VER}/pqHighlightItemDelegate.h
include/paraview-${PV_VER}/pqHighlightablePushButton.h
include/paraview-${PV_VER}/pqHighlightableToolButton.h
+include/paraview-${PV_VER}/pqIconBrowser.h
+include/paraview-${PV_VER}/pqIconListModel.h
+include/paraview-${PV_VER}/pqIconSettings.h
include/paraview-${PV_VER}/pqIgnoreSourceTimeReaction.h
include/paraview-${PV_VER}/pqImageCompressorWidget.h
include/paraview-${PV_VER}/pqImageTip.h
include/paraview-${PV_VER}/pqImageUtil.h
include/paraview-${PV_VER}/pqImplicitPlanePropertyWidget.h
+include/paraview-${PV_VER}/pqImportReaction.h
include/paraview-${PV_VER}/pqIndexSelectionWidget.h
include/paraview-${PV_VER}/pqInputDataTypeDecorator.h
include/paraview-${PV_VER}/pqInputSelectorWidget.h
@@ -457,6 +461,7 @@ include/paraview-${PV_VER}/pqInteractiveViewLink.h
include/paraview-${PV_VER}/pqInterfaceTracker.h
include/paraview-${PV_VER}/pqItemViewSearchWidget.h
include/paraview-${PV_VER}/pqItemViewSearchWidgetEventPlayer.h
+include/paraview-${PV_VER}/pqKeyEventFilter.h
include/paraview-${PV_VER}/pqKeyFrameEditor.h
include/paraview-${PV_VER}/pqKeyFrameTimeValidator.h
include/paraview-${PV_VER}/pqKeyFrameTypeWidget.h
@@ -484,6 +489,8 @@ include/paraview-${PV_VER}/pqListWidgetItemObject.h
include/paraview-${PV_VER}/pqLiveInsituManager.h
include/paraview-${PV_VER}/pqLiveInsituVisualizationManager.h
include/paraview-${PV_VER}/pqLiveSourceBehavior.h
+include/paraview-${PV_VER}/pqLiveSourceItem.h
+include/paraview-${PV_VER}/pqLiveSourceManager.h
include/paraview-${PV_VER}/pqLoadDataReaction.h
include/paraview-${PV_VER}/pqLoadMaterialsReaction.h
include/paraview-${PV_VER}/pqLoadPaletteReaction.h
@@ -512,6 +519,8 @@ include/paraview-${PV_VER}/pqModalShortcut.h
include/paraview-${PV_VER}/pqModelTransformSupportBehavior.h
include/paraview-${PV_VER}/pqMoleculePropertyWidget.h
include/paraview-${PV_VER}/pqMultiBlockInspectorWidget.h
+include/paraview-${PV_VER}/pqMultiBlockPropertiesEditorWidget.h
+include/paraview-${PV_VER}/pqMultiBlockPropertiesStateWidget.h
include/paraview-${PV_VER}/pqMultiColumnHeaderView.h
include/paraview-${PV_VER}/pqMultiComponentsDecorator.h
include/paraview-${PV_VER}/pqMultiSliceAxisWidget.h
@@ -528,7 +537,6 @@ include/paraview-${PV_VER}/pqOrbitCreatorDialog.h
include/paraview-${PV_VER}/pqOutputPort.h
include/paraview-${PV_VER}/pqOutputPortComboBox.h
include/paraview-${PV_VER}/pqOutputWidget.h
-include/paraview-${PV_VER}/pqPVAnimationWidget.h
include/paraview-${PV_VER}/pqPVApplicationCore.h
include/paraview-${PV_VER}/pqParaViewBehaviors.h
include/paraview-${PV_VER}/pqParaViewMenuBuilders.h
@@ -575,8 +583,11 @@ include/paraview-${PV_VER}/pqPropertyWidgetDecorator.h
include/paraview-${PV_VER}/pqPropertyWidgetInterface.h
include/paraview-${PV_VER}/pqProxiesWidget.h
include/paraview-${PV_VER}/pqProxy.h
+include/paraview-${PV_VER}/pqProxyAction.h
+include/paraview-${PV_VER}/pqProxyCategory.h
include/paraview-${PV_VER}/pqProxyEditorPropertyWidget.h
include/paraview-${PV_VER}/pqProxyGroupMenuManager.h
+include/paraview-${PV_VER}/pqProxyInfo.h
include/paraview-${PV_VER}/pqProxyInformationWidget.h
include/paraview-${PV_VER}/pqProxyModifiedStateUndoElement.h
include/paraview-${PV_VER}/pqProxyPropertyWidget.h
@@ -590,6 +601,7 @@ include/paraview-${PV_VER}/pqPythonDebugLeaksView.h
include/paraview-${PV_VER}/pqPythonEditorActions.h
include/paraview-${PV_VER}/pqPythonFileIO.h
include/paraview-${PV_VER}/pqPythonLineNumberArea.h
+include/paraview-${PV_VER}/pqPythonMacroSettings.h
include/paraview-${PV_VER}/pqPythonMacroSupervisor.h
include/paraview-${PV_VER}/pqPythonManager.h
include/paraview-${PV_VER}/pqPythonModule.h
@@ -611,6 +623,7 @@ include/paraview-${PV_VER}/pqQtConfig.h
include/paraview-${PV_VER}/pqQtDeprecated.h
include/paraview-${PV_VER}/pqQtWidgetsConfig.h
include/paraview-${PV_VER}/pqQuickLaunchDialog.h
+include/paraview-${PV_VER}/pqQuickLaunchDialogExtended.h
include/paraview-${PV_VER}/pqReaction.h
include/paraview-${PV_VER}/pqReaderSelectionPropertyWidget.h
include/paraview-${PV_VER}/pqRecentFilesMenu.h
@@ -625,12 +638,10 @@ include/paraview-${PV_VER}/pqRenderViewBase.h
include/paraview-${PV_VER}/pqRenderViewSelectionReaction.h
include/paraview-${PV_VER}/pqRepresentation.h
include/paraview-${PV_VER}/pqRepresentationToolbar.h
-include/paraview-${PV_VER}/pqRescaleRange.h
include/paraview-${PV_VER}/pqRescaleScalarRangeReaction.h
include/paraview-${PV_VER}/pqRescaleScalarRangeToCustomDialog.h
include/paraview-${PV_VER}/pqRescaleScalarRangeToDataOverTimeDialog.h
include/paraview-${PV_VER}/pqResetDefaultSettingsReaction.h
-include/paraview-${PV_VER}/pqResetScalarRangeReaction.h
include/paraview-${PV_VER}/pqSMAdaptor.h
include/paraview-${PV_VER}/pqSMProxy.h
include/paraview-${PV_VER}/pqSMSignalAdaptors.h
@@ -647,6 +658,7 @@ include/paraview-${PV_VER}/pqScalarValueListPropertyWidget.h
include/paraview-${PV_VER}/pqScalarsToColors.h
include/paraview-${PV_VER}/pqScaleByButton.h
include/paraview-${PV_VER}/pqScaledSpinBox.h
+include/paraview-${PV_VER}/pqScopedOverrideCursor.h
include/paraview-${PV_VER}/pqSearchBox.h
include/paraview-${PV_VER}/pqSearchItemReaction.h
include/paraview-${PV_VER}/pqSectionVisibilityContextMenu.h
@@ -720,13 +732,11 @@ include/paraview-${PV_VER}/pqTextLinkerPython.h
include/paraview-${PV_VER}/pqTextLocationWidget.h
include/paraview-${PV_VER}/pqTextureComboBox.h
include/paraview-${PV_VER}/pqTextureSelectorPropertyWidget.h
-include/paraview-${PV_VER}/pqTimeInspectorWidget.h
include/paraview-${PV_VER}/pqTimeKeeper.h
include/paraview-${PV_VER}/pqTimeManagerWidget.h
include/paraview-${PV_VER}/pqTimelineItemDelegate.h
include/paraview-${PV_VER}/pqTimelineModel.h
include/paraview-${PV_VER}/pqTimelinePainter.h
-include/paraview-${PV_VER}/pqTimelineScrollbar.h
include/paraview-${PV_VER}/pqTimelineView.h
include/paraview-${PV_VER}/pqTimelineWidget.h
include/paraview-${PV_VER}/pqTimerLogDisplay.h
@@ -796,10 +806,8 @@ include/paraview-${PV_VER}/token/Singletons.h
include/paraview-${PV_VER}/token/Token.h
include/paraview-${PV_VER}/token/Type.h
include/paraview-${PV_VER}/token/TypeContainer.h
-include/paraview-${PV_VER}/token/jsonManager.h
-include/paraview-${PV_VER}/token/jsonToken.h
-include/paraview-${PV_VER}/verdict.h
-include/paraview-${PV_VER}/verdict_defines.hpp
+include/paraview-${PV_VER}/token/json/jsonManager.h
+include/paraview-${PV_VER}/token/json/jsonToken.h
include/paraview-${PV_VER}/vtk2DWidgetRepresentation.h
include/paraview-${PV_VER}/vtk3DCursorRepresentation.h
include/paraview-${PV_VER}/vtk3DCursorWidget.h
@@ -847,6 +855,7 @@ include/paraview-${PV_VER}/vtkAOSDataArrayTemplate.txx
include/paraview-${PV_VER}/vtkASCIITextCodec.h
include/paraview-${PV_VER}/vtkAVSucdReader.h
include/paraview-${PV_VER}/vtkAbstractArray.h
+include/paraview-${PV_VER}/vtkAbstractCellArray.h
include/paraview-${PV_VER}/vtkAbstractCellLinks.h
include/paraview-${PV_VER}/vtkAbstractCellLocator.h
include/paraview-${PV_VER}/vtkAbstractChartExporter.h
@@ -888,9 +897,23 @@ include/paraview-${PV_VER}/vtkAdditionalFieldReader.h
include/paraview-${PV_VER}/vtkAdjacencyMatrixToEdgeTable.h
include/paraview-${PV_VER}/vtkAdjacentVertexIterator.h
include/paraview-${PV_VER}/vtkAffineArray.h
+include/paraview-${PV_VER}/vtkAffineCharArray.h
+include/paraview-${PV_VER}/vtkAffineDoubleArray.h
+include/paraview-${PV_VER}/vtkAffineFloatArray.h
+include/paraview-${PV_VER}/vtkAffineIdTypeArray.h
include/paraview-${PV_VER}/vtkAffineImplicitBackend.h
+include/paraview-${PV_VER}/vtkAffineIntArray.h
+include/paraview-${PV_VER}/vtkAffineLongArray.h
+include/paraview-${PV_VER}/vtkAffineLongLongArray.h
include/paraview-${PV_VER}/vtkAffineRepresentation.h
include/paraview-${PV_VER}/vtkAffineRepresentation2D.h
+include/paraview-${PV_VER}/vtkAffineShortArray.h
+include/paraview-${PV_VER}/vtkAffineSignedCharArray.h
+include/paraview-${PV_VER}/vtkAffineUnsignedCharArray.h
+include/paraview-${PV_VER}/vtkAffineUnsignedIntArray.h
+include/paraview-${PV_VER}/vtkAffineUnsignedLongArray.h
+include/paraview-${PV_VER}/vtkAffineUnsignedLongLongArray.h
+include/paraview-${PV_VER}/vtkAffineUnsignedShortArray.h
include/paraview-${PV_VER}/vtkAffineWidget.h
include/paraview-${PV_VER}/vtkAggregateDataSetFilter.h
include/paraview-${PV_VER}/vtkAggregateToPartitionedDataSetCollection.h
@@ -900,6 +923,7 @@ include/paraview-${PV_VER}/vtkAlignImageDataSetFilter.h
include/paraview-${PV_VER}/vtkAllToNRedistributeCompositePolyData.h
include/paraview-${PV_VER}/vtkAllToNRedistributePolyData.h
include/paraview-${PV_VER}/vtkAmoebaMinimizer.h
+include/paraview-${PV_VER}/vtkAnariVolumeInterface.h
include/paraview-${PV_VER}/vtkAngleRepresentation.h
include/paraview-${PV_VER}/vtkAngleRepresentation2D.h
include/paraview-${PV_VER}/vtkAngleRepresentation3D.h
@@ -924,6 +948,7 @@ include/paraview-${PV_VER}/vtkAppendCompositeDataLeaves.h
include/paraview-${PV_VER}/vtkAppendDataSets.h
include/paraview-${PV_VER}/vtkAppendFilter.h
include/paraview-${PV_VER}/vtkAppendLocationAttributes.h
+include/paraview-${PV_VER}/vtkAppendPartitionedDataSetCollection.h
include/paraview-${PV_VER}/vtkAppendPoints.h
include/paraview-${PV_VER}/vtkAppendPolyData.h
include/paraview-${PV_VER}/vtkAppendRectilinearGrid.h
@@ -990,6 +1015,7 @@ include/paraview-${PV_VER}/vtkAxesTransformWidget.h
include/paraview-${PV_VER}/vtkAxis.h
include/paraview-${PV_VER}/vtkAxisActor.h
include/paraview-${PV_VER}/vtkAxisActor2D.h
+include/paraview-${PV_VER}/vtkAxisAlignedCutter.h
include/paraview-${PV_VER}/vtkAxisExtended.h
include/paraview-${PV_VER}/vtkAxisFollower.h
include/paraview-${PV_VER}/vtkBMPReader.h
@@ -1008,6 +1034,7 @@ include/paraview-${PV_VER}/vtkBarChartActor.h
include/paraview-${PV_VER}/vtkBase64InputStream.h
include/paraview-${PV_VER}/vtkBase64OutputStream.h
include/paraview-${PV_VER}/vtkBase64Utilities.h
+include/paraview-${PV_VER}/vtkBatch.h
include/paraview-${PV_VER}/vtkBatchedSurfaceLICMapper.h
include/paraview-${PV_VER}/vtkBezierContourLineInterpolator.h
include/paraview-${PV_VER}/vtkBezierCurve.h
@@ -1103,7 +1130,6 @@ include/paraview-${PV_VER}/vtkCPXMLPWriterPipeline.h
include/paraview-${PV_VER}/vtkCSVExporter.h
include/paraview-${PV_VER}/vtkCSVWriter.h
include/paraview-${PV_VER}/vtkCachedStreamingDemandDrivenPipeline.h
-include/paraview-${PV_VER}/vtkCachingInterpolatedVelocityField.h
include/paraview-${PV_VER}/vtkCallbackCommand.h
include/paraview-${PV_VER}/vtkCamera.h
include/paraview-${PV_VER}/vtkCamera3DRepresentation.h
@@ -1147,7 +1173,8 @@ include/paraview-${PV_VER}/vtkCellGraphicsPrimitiveMap.h
include/paraview-${PV_VER}/vtkCellGrid.h
include/paraview-${PV_VER}/vtkCellGridAlgorithm.h
include/paraview-${PV_VER}/vtkCellGridBoundsQuery.h
-include/paraview-${PV_VER}/vtkCellGridComputeSurface.h
+include/paraview-${PV_VER}/vtkCellGridComputeSides.h
+include/paraview-${PV_VER}/vtkCellGridCopyQuery.h
include/paraview-${PV_VER}/vtkCellGridElevation.h
include/paraview-${PV_VER}/vtkCellGridElevationQuery.h
include/paraview-${PV_VER}/vtkCellGridEvaluator.h
@@ -1168,7 +1195,6 @@ include/paraview-${PV_VER}/vtkCellIntegrator.h
include/paraview-${PV_VER}/vtkCellIterator.h
include/paraview-${PV_VER}/vtkCellLinks.h
include/paraview-${PV_VER}/vtkCellLocator.h
-include/paraview-${PV_VER}/vtkCellLocatorInterpolatedVelocityField.h
include/paraview-${PV_VER}/vtkCellLocatorStrategy.h
include/paraview-${PV_VER}/vtkCellMetadata.h
include/paraview-${PV_VER}/vtkCellPicker.h
@@ -1203,7 +1229,6 @@ include/paraview-${PV_VER}/vtkChartsCoreModule.h
include/paraview-${PV_VER}/vtkCheckerboardRepresentation.h
include/paraview-${PV_VER}/vtkCheckerboardSplatter.h
include/paraview-${PV_VER}/vtkCheckerboardWidget.h
-include/paraview-${PV_VER}/vtkChemistryConfigure.h
include/paraview-${PV_VER}/vtkCityGMLReader.h
include/paraview-${PV_VER}/vtkCleanArrays.h
include/paraview-${PV_VER}/vtkCleanPolyData.h
@@ -1245,8 +1270,6 @@ include/paraview-${PV_VER}/vtkColorTransferControlPointsItem.h
include/paraview-${PV_VER}/vtkColorTransferFunction.h
include/paraview-${PV_VER}/vtkColorTransferFunctionItem.h
include/paraview-${PV_VER}/vtkCommand.h
-include/paraview-${PV_VER}/vtkCommandOptions.h
-include/paraview-${PV_VER}/vtkCommandOptionsXMLParser.h
include/paraview-${PV_VER}/vtkCommonColorModule.h
include/paraview-${PV_VER}/vtkCommonComputationalGeometryModule.h
include/paraview-${PV_VER}/vtkCommonCoreModule.h
@@ -1267,6 +1290,7 @@ include/paraview-${PV_VER}/vtkCompositeAnimationPlayer.h
include/paraview-${PV_VER}/vtkCompositeArray.h
include/paraview-${PV_VER}/vtkCompositeCellGridMapper.h
include/paraview-${PV_VER}/vtkCompositeCellGridReader.h
+include/paraview-${PV_VER}/vtkCompositeCharArray.h
include/paraview-${PV_VER}/vtkCompositeControlPointsItem.h
include/paraview-${PV_VER}/vtkCompositeCutter.h
include/paraview-${PV_VER}/vtkCompositeDataDisplayAttributes.h
@@ -1282,9 +1306,15 @@ include/paraview-${PV_VER}/vtkCompositeDataSetAlgorithm.h
include/paraview-${PV_VER}/vtkCompositeDataSetNodeReference.h
include/paraview-${PV_VER}/vtkCompositeDataSetRange.h
include/paraview-${PV_VER}/vtkCompositeDataWriter.h
+include/paraview-${PV_VER}/vtkCompositeDoubleArray.h
+include/paraview-${PV_VER}/vtkCompositeFloatArray.h
+include/paraview-${PV_VER}/vtkCompositeIdTypeArray.h
include/paraview-${PV_VER}/vtkCompositeImplicitBackend.h
include/paraview-${PV_VER}/vtkCompositeImplicitBackend.txx
+include/paraview-${PV_VER}/vtkCompositeIntArray.h
include/paraview-${PV_VER}/vtkCompositeInterpolatedVelocityField.h
+include/paraview-${PV_VER}/vtkCompositeLongArray.h
+include/paraview-${PV_VER}/vtkCompositeLongLongArray.h
include/paraview-${PV_VER}/vtkCompositeMapperHelper2.h
include/paraview-${PV_VER}/vtkCompositeMultiProcessController.h
include/paraview-${PV_VER}/vtkCompositePolyDataMapper.h
@@ -1293,9 +1323,16 @@ include/paraview-${PV_VER}/vtkCompositePolyDataMapperDelegator.h
include/paraview-${PV_VER}/vtkCompositeRGBAPass.h
include/paraview-${PV_VER}/vtkCompositeRenderManager.h
include/paraview-${PV_VER}/vtkCompositeRepresentation.h
+include/paraview-${PV_VER}/vtkCompositeShortArray.h
+include/paraview-${PV_VER}/vtkCompositeSignedCharArray.h
include/paraview-${PV_VER}/vtkCompositeSurfaceLICMapper.h
include/paraview-${PV_VER}/vtkCompositeSurfaceLICMapperDelegator.h
include/paraview-${PV_VER}/vtkCompositeTransferFunctionItem.h
+include/paraview-${PV_VER}/vtkCompositeUnsignedCharArray.h
+include/paraview-${PV_VER}/vtkCompositeUnsignedIntArray.h
+include/paraview-${PV_VER}/vtkCompositeUnsignedLongArray.h
+include/paraview-${PV_VER}/vtkCompositeUnsignedLongLongArray.h
+include/paraview-${PV_VER}/vtkCompositeUnsignedShortArray.h
include/paraview-${PV_VER}/vtkCompositeZPass.h
include/paraview-${PV_VER}/vtkCompositeZPassFS.h
include/paraview-${PV_VER}/vtkCompositedSynchronizedRenderers.h
@@ -1309,7 +1346,21 @@ include/paraview-${PV_VER}/vtkConeSource.h
include/paraview-${PV_VER}/vtkConnectedPointsFilter.h
include/paraview-${PV_VER}/vtkConnectivityFilter.h
include/paraview-${PV_VER}/vtkConstantArray.h
+include/paraview-${PV_VER}/vtkConstantCharArray.h
+include/paraview-${PV_VER}/vtkConstantDoubleArray.h
+include/paraview-${PV_VER}/vtkConstantFloatArray.h
+include/paraview-${PV_VER}/vtkConstantIdTypeArray.h
include/paraview-${PV_VER}/vtkConstantImplicitBackend.h
+include/paraview-${PV_VER}/vtkConstantIntArray.h
+include/paraview-${PV_VER}/vtkConstantLongArray.h
+include/paraview-${PV_VER}/vtkConstantLongLongArray.h
+include/paraview-${PV_VER}/vtkConstantShortArray.h
+include/paraview-${PV_VER}/vtkConstantSignedCharArray.h
+include/paraview-${PV_VER}/vtkConstantUnsignedCharArray.h
+include/paraview-${PV_VER}/vtkConstantUnsignedIntArray.h
+include/paraview-${PV_VER}/vtkConstantUnsignedLongArray.h
+include/paraview-${PV_VER}/vtkConstantUnsignedLongLongArray.h
+include/paraview-${PV_VER}/vtkConstantUnsignedShortArray.h
include/paraview-${PV_VER}/vtkConstrainedPointHandleRepresentation.h
include/paraview-${PV_VER}/vtkConstrainedSmoothingFilter.h
include/paraview-${PV_VER}/vtkContext2D.h
@@ -1362,7 +1413,7 @@ include/paraview-${PV_VER}/vtkCornerAnnotation.h
include/paraview-${PV_VER}/vtkCorrelativeStatistics.h
include/paraview-${PV_VER}/vtkCountFaces.h
include/paraview-${PV_VER}/vtkCountVertices.h
-include/paraview-${PV_VER}/vtkCriticalSection.h
+include/paraview-${PV_VER}/vtkCriticalTime.h
include/paraview-${PV_VER}/vtkCubeAxesActor.h
include/paraview-${PV_VER}/vtkCubeAxesActor2D.h
include/paraview-${PV_VER}/vtkCubeSource.h
@@ -1383,12 +1434,19 @@ include/paraview-${PV_VER}/vtkDEMReader.h
include/paraview-${PV_VER}/vtkDGAttributeInformation.h
include/paraview-${PV_VER}/vtkDGBoundsResponder.h
include/paraview-${PV_VER}/vtkDGCell.h
+include/paraview-${PV_VER}/vtkDGConstantOperators.h
+include/paraview-${PV_VER}/vtkDGCopyResponder.h
include/paraview-${PV_VER}/vtkDGEdge.h
include/paraview-${PV_VER}/vtkDGElevationResponder.h
include/paraview-${PV_VER}/vtkDGEvaluator.h
+include/paraview-${PV_VER}/vtkDGHCurlOperators.h
+include/paraview-${PV_VER}/vtkDGHDivOperators.h
+include/paraview-${PV_VER}/vtkDGHGradOperators.h
include/paraview-${PV_VER}/vtkDGHex.h
include/paraview-${PV_VER}/vtkDGIOResponder.h
include/paraview-${PV_VER}/vtkDGInterpolateCalculator.h
+include/paraview-${PV_VER}/vtkDGInvokeOperator.h
+include/paraview-${PV_VER}/vtkDGOperatorEntry.h
include/paraview-${PV_VER}/vtkDGPyr.h
include/paraview-${PV_VER}/vtkDGQuad.h
include/paraview-${PV_VER}/vtkDGRangeResponder.h
@@ -1434,6 +1492,8 @@ include/paraview-${PV_VER}/vtkDataObject.h
include/paraview-${PV_VER}/vtkDataObjectAlgorithm.h
include/paraview-${PV_VER}/vtkDataObjectCollection.h
include/paraview-${PV_VER}/vtkDataObjectGenerator.h
+include/paraview-${PV_VER}/vtkDataObjectImplicitBackendInterface.h
+include/paraview-${PV_VER}/vtkDataObjectMeshCache.h
include/paraview-${PV_VER}/vtkDataObjectReader.h
include/paraview-${PV_VER}/vtkDataObjectToDataSetFilter.h
include/paraview-${PV_VER}/vtkDataObjectToTable.h
@@ -1470,7 +1530,11 @@ include/paraview-${PV_VER}/vtkDebug.h
include/paraview-${PV_VER}/vtkDebugLeaks.h
include/paraview-${PV_VER}/vtkDebugLeaksManager.h
include/paraview-${PV_VER}/vtkDebugRangeIterators.h
+include/paraview-${PV_VER}/vtkDecimatePolylineAngleStrategy.h
+include/paraview-${PV_VER}/vtkDecimatePolylineCustomFieldStrategy.h
+include/paraview-${PV_VER}/vtkDecimatePolylineDistanceStrategy.h
include/paraview-${PV_VER}/vtkDecimatePolylineFilter.h
+include/paraview-${PV_VER}/vtkDecimatePolylineStrategy.h
include/paraview-${PV_VER}/vtkDecimatePro.h
include/paraview-${PV_VER}/vtkDefaultPass.h
include/paraview-${PV_VER}/vtkDeflectNormals.h
@@ -1490,6 +1554,7 @@ include/paraview-${PV_VER}/vtkDepthOfFieldPass.h
include/paraview-${PV_VER}/vtkDepthPeelingPass.h
include/paraview-${PV_VER}/vtkDepthSortPolyData.h
include/paraview-${PV_VER}/vtkDescriptiveStatistics.h
+include/paraview-${PV_VER}/vtkDeserializer.h
include/paraview-${PV_VER}/vtkDiagonalMatrixSource.h
include/paraview-${PV_VER}/vtkDicer.h
include/paraview-${PV_VER}/vtkDijkstraGraphGeodesicPath.h
@@ -1531,6 +1596,7 @@ include/paraview-${PV_VER}/vtkDuplicatePolyData.h
include/paraview-${PV_VER}/vtkDynamic2DLabelMapper.h
include/paraview-${PV_VER}/vtkDynamicLoader.h
include/paraview-${PV_VER}/vtkEDLShading.h
+include/paraview-${PV_VER}/vtkERFReader.h
include/paraview-${PV_VER}/vtkEarthSource.h
include/paraview-${PV_VER}/vtkEdgeCenters.h
include/paraview-${PV_VER}/vtkEdgeListIterator.h
@@ -1544,12 +1610,16 @@ include/paraview-${PV_VER}/vtkEllipsoidalGaussianKernel.h
include/paraview-${PV_VER}/vtkEllipticalButtonSource.h
include/paraview-${PV_VER}/vtkEmptyCell.h
include/paraview-${PV_VER}/vtkEmptyRepresentation.h
+include/paraview-${PV_VER}/vtkEmscriptenTestUtilities.h
+include/paraview-${PV_VER}/vtkEmulatedTimeAlgorithm.h
include/paraview-${PV_VER}/vtkEnSight6BinaryReader.h
include/paraview-${PV_VER}/vtkEnSight6Reader.h
include/paraview-${PV_VER}/vtkEnSightGoldBinaryReader.h
+include/paraview-${PV_VER}/vtkEnSightGoldCombinedReader.h
include/paraview-${PV_VER}/vtkEnSightGoldReader.h
include/paraview-${PV_VER}/vtkEnSightMasterServerReader.h
include/paraview-${PV_VER}/vtkEnSightReader.h
+include/paraview-${PV_VER}/vtkEnSightSOSGoldReader.h
include/paraview-${PV_VER}/vtkEnSightWriter.h
include/paraview-${PV_VER}/vtkEncodedGradientEstimator.h
include/paraview-${PV_VER}/vtkEncodedGradientShader.h
@@ -1623,14 +1693,9 @@ include/paraview-${PV_VER}/vtkExtractPolyDataPiece.h
include/paraview-${PV_VER}/vtkExtractRectilinearGrid.h
include/paraview-${PV_VER}/vtkExtractScatterPlot.h
include/paraview-${PV_VER}/vtkExtractSelectedArraysOverTime.h
-include/paraview-${PV_VER}/vtkExtractSelectedBlock.h
include/paraview-${PV_VER}/vtkExtractSelectedFrustum.h
include/paraview-${PV_VER}/vtkExtractSelectedGraph.h
-include/paraview-${PV_VER}/vtkExtractSelectedIds.h
-include/paraview-${PV_VER}/vtkExtractSelectedLocations.h
-include/paraview-${PV_VER}/vtkExtractSelectedPolyDataIds.h
include/paraview-${PV_VER}/vtkExtractSelectedRows.h
-include/paraview-${PV_VER}/vtkExtractSelectedThresholds.h
include/paraview-${PV_VER}/vtkExtractSelectedTree.h
include/paraview-${PV_VER}/vtkExtractSelection.h
include/paraview-${PV_VER}/vtkExtractSelectionBase.h
@@ -1690,8 +1755,10 @@ include/paraview-${PV_VER}/vtkFiltersParallelVerdictModule.h
include/paraview-${PV_VER}/vtkFiltersPointsModule.h
include/paraview-${PV_VER}/vtkFiltersProgrammableModule.h
include/paraview-${PV_VER}/vtkFiltersPythonModule.h
+include/paraview-${PV_VER}/vtkFiltersReductionModule.h
include/paraview-${PV_VER}/vtkFiltersSourcesModule.h
include/paraview-${PV_VER}/vtkFiltersStatisticsModule.h
+include/paraview-${PV_VER}/vtkFiltersTemporalModule.h
include/paraview-${PV_VER}/vtkFiltersTensorModule.h
include/paraview-${PV_VER}/vtkFiltersTextureModule.h
include/paraview-${PV_VER}/vtkFiltersVerdictModule.h
@@ -1723,6 +1790,7 @@ include/paraview-${PV_VER}/vtkFocalPlaneContourRepresentation.h
include/paraview-${PV_VER}/vtkFocalPlanePointPlacer.h
include/paraview-${PV_VER}/vtkFollower.h
include/paraview-${PV_VER}/vtkForEach.h
+include/paraview-${PV_VER}/vtkForceStaticMesh.h
include/paraview-${PV_VER}/vtkForceTime.h
include/paraview-${PV_VER}/vtkFrameBufferObjectBase.h
include/paraview-${PV_VER}/vtkFramebufferPass.h
@@ -1747,6 +1815,7 @@ include/paraview-${PV_VER}/vtkGLTFDocumentLoader.h
include/paraview-${PV_VER}/vtkGLTFExporter.h
include/paraview-${PV_VER}/vtkGLTFImporter.h
include/paraview-${PV_VER}/vtkGLTFReader.h
+include/paraview-${PV_VER}/vtkGLTFTexture.h
include/paraview-${PV_VER}/vtkGLTFWriter.h
include/paraview-${PV_VER}/vtkGPUInfo.h
include/paraview-${PV_VER}/vtkGPUInfoList.h
@@ -1764,6 +1833,7 @@ include/paraview-${PV_VER}/vtkGaussianSplatter.h
include/paraview-${PV_VER}/vtkGeneralTransform.h
include/paraview-${PV_VER}/vtkGeneralizedKernel.h
include/paraview-${PV_VER}/vtkGenerateGlobalIds.h
+include/paraview-${PV_VER}/vtkGenerateIds.h
include/paraview-${PV_VER}/vtkGenerateIndexArray.h
include/paraview-${PV_VER}/vtkGenerateProcessIds.h
include/paraview-${PV_VER}/vtkGenerateTimeSteps.h
@@ -1798,12 +1868,15 @@ include/paraview-${PV_VER}/vtkGenericRenderWindowInteractor.h
include/paraview-${PV_VER}/vtkGenericStreamTracer.h
include/paraview-${PV_VER}/vtkGenericSubdivisionErrorMetric.h
include/paraview-${PV_VER}/vtkGenericVertexAttributeMapping.h
+include/paraview-${PV_VER}/vtkGeoProjection.h
+include/paraview-${PV_VER}/vtkGeoTransform.h
include/paraview-${PV_VER}/vtkGeodesicPath.h
include/paraview-${PV_VER}/vtkGeometricErrorMetric.h
include/paraview-${PV_VER}/vtkGeometryFilter.h
include/paraview-${PV_VER}/vtkGeometryRepresentation.h
include/paraview-${PV_VER}/vtkGeometryRepresentationWithFaces.h
include/paraview-${PV_VER}/vtkGeometrySliceRepresentation.h
+include/paraview-${PV_VER}/vtkGeovisCoreModule.h
include/paraview-${PV_VER}/vtkGhostCellsGenerator.h
include/paraview-${PV_VER}/vtkGlobFileNames.h
include/paraview-${PV_VER}/vtkGlyph2D.h
@@ -1841,8 +1914,11 @@ include/paraview-${PV_VER}/vtkGroupLeafVertices.h
include/paraview-${PV_VER}/vtkGroupTimeStepsFilter.h
include/paraview-${PV_VER}/vtkH5PartReader.h
include/paraview-${PV_VER}/vtkH5RageReader.h
+include/paraview-${PV_VER}/vtkHDF5Helper.h
include/paraview-${PV_VER}/vtkHDF5ScopedHandle.h
include/paraview-${PV_VER}/vtkHDFReader.h
+include/paraview-${PV_VER}/vtkHDFUtilities.h
+include/paraview-${PV_VER}/vtkHDFWriter.h
include/paraview-${PV_VER}/vtkHDRReader.h
include/paraview-${PV_VER}/vtkHandleRepresentation.h
include/paraview-${PV_VER}/vtkHandleSource.h
@@ -1850,6 +1926,7 @@ include/paraview-${PV_VER}/vtkHandleWidget.h
include/paraview-${PV_VER}/vtkHardwarePicker.h
include/paraview-${PV_VER}/vtkHardwareSelector.h
include/paraview-${PV_VER}/vtkHardwareWindow.h
+include/paraview-${PV_VER}/vtkHashCombiner.h
include/paraview-${PV_VER}/vtkHausdorffDistancePointSetFilter.h
include/paraview-${PV_VER}/vtkHeap.h
include/paraview-${PV_VER}/vtkHedgeHog.h
@@ -1857,7 +1934,6 @@ include/paraview-${PV_VER}/vtkHexagonalPrism.h
include/paraview-${PV_VER}/vtkHexahedron.h
include/paraview-${PV_VER}/vtkHiddenLineRemovalPass.h
include/paraview-${PV_VER}/vtkHierarchicalBinningFilter.h
-include/paraview-${PV_VER}/vtkHierarchicalBoxDataIterator.h
include/paraview-${PV_VER}/vtkHierarchicalBoxDataSet.h
include/paraview-${PV_VER}/vtkHierarchicalBoxDataSetAlgorithm.h
include/paraview-${PV_VER}/vtkHierarchicalDataExtractDataSets.h
@@ -1881,7 +1957,6 @@ include/paraview-${PV_VER}/vtkHull.h
include/paraview-${PV_VER}/vtkHybridProbeFilter.h
include/paraview-${PV_VER}/vtkHyperStreamline.h
include/paraview-${PV_VER}/vtkHyperTree.h
-include/paraview-${PV_VER}/vtkHyperTreeCursor.h
include/paraview-${PV_VER}/vtkHyperTreeGrid.h
include/paraview-${PV_VER}/vtkHyperTreeGridAlgorithm.h
include/paraview-${PV_VER}/vtkHyperTreeGridAxisClip.h
@@ -1892,7 +1967,10 @@ include/paraview-${PV_VER}/vtkHyperTreeGridContour.h
include/paraview-${PV_VER}/vtkHyperTreeGridDepthLimiter.h
include/paraview-${PV_VER}/vtkHyperTreeGridEntry.h
include/paraview-${PV_VER}/vtkHyperTreeGridEvaluateCoarse.h
+include/paraview-${PV_VER}/vtkHyperTreeGridExtractGhostCells.h
include/paraview-${PV_VER}/vtkHyperTreeGridFeatureEdges.h
+include/paraview-${PV_VER}/vtkHyperTreeGridGenerateGlobalIds.h
+include/paraview-${PV_VER}/vtkHyperTreeGridGenerateProcessIds.h
include/paraview-${PV_VER}/vtkHyperTreeGridGeometricLocator.h
include/paraview-${PV_VER}/vtkHyperTreeGridGeometry.h
include/paraview-${PV_VER}/vtkHyperTreeGridGeometryEntry.h
@@ -1921,6 +1999,8 @@ include/paraview-${PV_VER}/vtkHyperTreeGridOutlineFilter.h
include/paraview-${PV_VER}/vtkHyperTreeGridPlaneCutter.h
include/paraview-${PV_VER}/vtkHyperTreeGridPreConfiguredSource.h
include/paraview-${PV_VER}/vtkHyperTreeGridProbeFilter.h
+include/paraview-${PV_VER}/vtkHyperTreeGridProbeFilterUtilities.h
+include/paraview-${PV_VER}/vtkHyperTreeGridRemoveGhostCells.h
include/paraview-${PV_VER}/vtkHyperTreeGridRepresentation.h
include/paraview-${PV_VER}/vtkHyperTreeGridScales.h
include/paraview-${PV_VER}/vtkHyperTreeGridSource.h
@@ -1928,6 +2008,7 @@ include/paraview-${PV_VER}/vtkHyperTreeGridThreshold.h
include/paraview-${PV_VER}/vtkHyperTreeGridToDualGrid.h
include/paraview-${PV_VER}/vtkHyperTreeGridToUnstructuredGrid.h
include/paraview-${PV_VER}/vtkHyperTreeGridTools.h
+include/paraview-${PV_VER}/vtkHyperTreeGridVisibleLeavesSize.h
include/paraview-${PV_VER}/vtkIOAMRModule.h
include/paraview-${PV_VER}/vtkIOAsynchronousModule.h
include/paraview-${PV_VER}/vtkIOCGNSReaderModule.h
@@ -1937,6 +2018,7 @@ include/paraview-${PV_VER}/vtkIOCellGridModule.h
include/paraview-${PV_VER}/vtkIOChemistryModule.h
include/paraview-${PV_VER}/vtkIOCityGMLModule.h
include/paraview-${PV_VER}/vtkIOCoreModule.h
+include/paraview-${PV_VER}/vtkIOERFModule.h
include/paraview-${PV_VER}/vtkIOEnSightModule.h
include/paraview-${PV_VER}/vtkIOExodusModule.h
include/paraview-${PV_VER}/vtkIOExportGL2PSModule.h
@@ -1964,6 +2046,7 @@ include/paraview-${PV_VER}/vtkIOParallelExodusModule.h
include/paraview-${PV_VER}/vtkIOParallelLSDynaModule.h
include/paraview-${PV_VER}/vtkIOParallelModule.h
include/paraview-${PV_VER}/vtkIOParallelXMLModule.h
+include/paraview-${PV_VER}/vtkIOSSCellGridReader.h
include/paraview-${PV_VER}/vtkIOSSReader.h
include/paraview-${PV_VER}/vtkIOSSWriter.h
include/paraview-${PV_VER}/vtkIOSegYModule.h
@@ -2085,6 +2168,7 @@ include/paraview-${PV_VER}/vtkImageQuantizeRGBToIndex.h
include/paraview-${PV_VER}/vtkImageRFFT.h
include/paraview-${PV_VER}/vtkImageRGBToHSI.h
include/paraview-${PV_VER}/vtkImageRGBToHSV.h
+include/paraview-${PV_VER}/vtkImageRGBToXYZ.h
include/paraview-${PV_VER}/vtkImageRGBToYIQ.h
include/paraview-${PV_VER}/vtkImageRange3D.h
include/paraview-${PV_VER}/vtkImageReader.h
@@ -2097,6 +2181,7 @@ include/paraview-${PV_VER}/vtkImageResample.h
include/paraview-${PV_VER}/vtkImageResize.h
include/paraview-${PV_VER}/vtkImageReslice.h
include/paraview-${PV_VER}/vtkImageResliceToColors.h
+include/paraview-${PV_VER}/vtkImageSSIM.h
include/paraview-${PV_VER}/vtkImageSeparableConvolution.h
include/paraview-${PV_VER}/vtkImageShiftScale.h
include/paraview-${PV_VER}/vtkImageShrink3D.h
@@ -2130,6 +2215,7 @@ include/paraview-${PV_VER}/vtkImageVolumeRepresentation.h
include/paraview-${PV_VER}/vtkImageWeightedSum.h
include/paraview-${PV_VER}/vtkImageWrapPad.h
include/paraview-${PV_VER}/vtkImageWriter.h
+include/paraview-${PV_VER}/vtkImageXYZToLAB.h
include/paraview-${PV_VER}/vtkImageYIQToRGB.h
include/paraview-${PV_VER}/vtkImagingColorModule.h
include/paraview-${PV_VER}/vtkImagingCoreModule.h
@@ -2167,13 +2253,28 @@ include/paraview-${PV_VER}/vtkInSituInitializationHelper.h
include/paraview-${PV_VER}/vtkInSituPipeline.h
include/paraview-${PV_VER}/vtkInSituPipelineIO.h
include/paraview-${PV_VER}/vtkInSituPipelinePython.h
+include/paraview-${PV_VER}/vtkInSituPythonConduitHelper.h
include/paraview-${PV_VER}/vtkIncrementalOctreeNode.h
include/paraview-${PV_VER}/vtkIncrementalOctreePointLocator.h
include/paraview-${PV_VER}/vtkIncrementalPointLocator.h
include/paraview-${PV_VER}/vtkIndent.h
include/paraview-${PV_VER}/vtkIndexedArray.h
+include/paraview-${PV_VER}/vtkIndexedCharArray.h
+include/paraview-${PV_VER}/vtkIndexedDoubleArray.h
+include/paraview-${PV_VER}/vtkIndexedFloatArray.h
+include/paraview-${PV_VER}/vtkIndexedIdTypeArray.h
include/paraview-${PV_VER}/vtkIndexedImplicitBackend.h
include/paraview-${PV_VER}/vtkIndexedImplicitBackend.txx
+include/paraview-${PV_VER}/vtkIndexedIntArray.h
+include/paraview-${PV_VER}/vtkIndexedLongArray.h
+include/paraview-${PV_VER}/vtkIndexedLongLongArray.h
+include/paraview-${PV_VER}/vtkIndexedShortArray.h
+include/paraview-${PV_VER}/vtkIndexedSignedCharArray.h
+include/paraview-${PV_VER}/vtkIndexedUnsignedCharArray.h
+include/paraview-${PV_VER}/vtkIndexedUnsignedIntArray.h
+include/paraview-${PV_VER}/vtkIndexedUnsignedLongArray.h
+include/paraview-${PV_VER}/vtkIndexedUnsignedLongLongArray.h
+include/paraview-${PV_VER}/vtkIndexedUnsignedShortArray.h
include/paraview-${PV_VER}/vtkInformation.h
include/paraview-${PV_VER}/vtkInformationDataObjectKey.h
include/paraview-${PV_VER}/vtkInformationDataObjectMetaDataKey.h
@@ -2238,7 +2339,6 @@ include/paraview-${PV_VER}/vtkInteractorStyleUnicam.h
include/paraview-${PV_VER}/vtkInteractorStyleUser.h
include/paraview-${PV_VER}/vtkInterpolateCalculator.h
include/paraview-${PV_VER}/vtkInterpolateDataSetAttributes.h
-include/paraview-${PV_VER}/vtkInterpolatedVelocityField.h
include/paraview-${PV_VER}/vtkInterpolatingSubdivisionFilter.h
include/paraview-${PV_VER}/vtkInterpolationKernel.h
include/paraview-${PV_VER}/vtkIntersectFragments.h
@@ -2301,6 +2401,10 @@ include/paraview-${PV_VER}/vtkLandmarkTransform.h
include/paraview-${PV_VER}/vtkLargeInteger.h
include/paraview-${PV_VER}/vtkLeaderActor2D.h
include/paraview-${PV_VER}/vtkLegacy.h
+include/paraview-${PV_VER}/vtkLegacyCellGridReader.h
+include/paraview-${PV_VER}/vtkLegacyCellGridWriter.h
+include/paraview-${PV_VER}/vtkLegacyParticlePathFilter.h
+include/paraview-${PV_VER}/vtkLegacyStreaklineFilter.h
include/paraview-${PV_VER}/vtkLegendBoxActor.h
include/paraview-${PV_VER}/vtkLegendScaleActor.h
include/paraview-${PV_VER}/vtkLengthDistribution.h
@@ -2376,6 +2480,7 @@ include/paraview-${PV_VER}/vtkMarchingSquaresLineCases.h
include/paraview-${PV_VER}/vtkMarkBoundaryFilter.h
include/paraview-${PV_VER}/vtkMarkSelectedRows.h
include/paraview-${PV_VER}/vtkMarkerUtilities.h
+include/paraview-${PV_VER}/vtkMarshalContext.h
include/paraview-${PV_VER}/vtkMaskFields.h
include/paraview-${PV_VER}/vtkMaskPoints.h
include/paraview-${PV_VER}/vtkMaskPointsFilter.h
@@ -2429,6 +2534,7 @@ include/paraview-${PV_VER}/vtkMeshQuality.h
include/paraview-${PV_VER}/vtkMeta.h
include/paraview-${PV_VER}/vtkMetaImageReader.h
include/paraview-${PV_VER}/vtkMetaImageWriter.h
+include/paraview-${PV_VER}/vtkMetaImporter.h
include/paraview-${PV_VER}/vtkMetaReader.h
include/paraview-${PV_VER}/vtkMinMax.h
include/paraview-${PV_VER}/vtkMinimalStandardRandomSequence.h
@@ -2502,6 +2608,7 @@ include/paraview-${PV_VER}/vtkOBJImporter.h
include/paraview-${PV_VER}/vtkOBJImporterInternals.h
include/paraview-${PV_VER}/vtkOBJReader.h
include/paraview-${PV_VER}/vtkOBJWriter.h
+include/paraview-${PV_VER}/vtkOFFReader.h
include/paraview-${PV_VER}/vtkOMETIFFChannelCalculator.h
include/paraview-${PV_VER}/vtkOMETIFFReader.h
include/paraview-${PV_VER}/vtkOMFReader.h
@@ -2561,6 +2668,7 @@ include/paraview-${PV_VER}/vtkOpenGLLowMemoryBatchedPolyDataMapper.h
include/paraview-${PV_VER}/vtkOpenGLLowMemoryPolyDataMapper.h
include/paraview-${PV_VER}/vtkOpenGLMoleculeMapper.h
include/paraview-${PV_VER}/vtkOpenGLPointGaussianMapper.h
+include/paraview-${PV_VER}/vtkOpenGLPointGaussianMapperHelper.h
include/paraview-${PV_VER}/vtkOpenGLPolyDataMapper.h
include/paraview-${PV_VER}/vtkOpenGLPolyDataMapper2D.h
include/paraview-${PV_VER}/vtkOpenGLProjectedTetrahedraMapper.h
@@ -2605,6 +2713,7 @@ include/paraview-${PV_VER}/vtkOrderStatistics.h
include/paraview-${PV_VER}/vtkOrderedCompositeDistributor.h
include/paraview-${PV_VER}/vtkOrderedCompositingHelper.h
include/paraview-${PV_VER}/vtkOrderedTriangulator.h
+include/paraview-${PV_VER}/vtkOrientPolyData.h
include/paraview-${PV_VER}/vtkOrientationMarkerWidget.h
include/paraview-${PV_VER}/vtkOrientationRepresentation.h
include/paraview-${PV_VER}/vtkOrientationWidget.h
@@ -2776,6 +2885,7 @@ include/paraview-${PV_VER}/vtkPVEnvironmentInformationHelper.h
include/paraview-${PV_VER}/vtkPVExponentialKeyFrame.h
include/paraview-${PV_VER}/vtkPVExtractCellsByType.h
include/paraview-${PV_VER}/vtkPVExtractComponent.h
+include/paraview-${PV_VER}/vtkPVExtractGhostCells.h
include/paraview-${PV_VER}/vtkPVExtractHistogram2D.h
include/paraview-${PV_VER}/vtkPVExtractSelection.h
include/paraview-${PV_VER}/vtkPVExtractVOI.h
@@ -2786,6 +2896,8 @@ include/paraview-${PV_VER}/vtkPVFrustumActor.h
include/paraview-${PV_VER}/vtkPVGL2PSExporter.h
include/paraview-${PV_VER}/vtkPVGUIPluginInterface.h
include/paraview-${PV_VER}/vtkPVGeneralSettings.h
+include/paraview-${PV_VER}/vtkPVGenerateGlobalIds.h
+include/paraview-${PV_VER}/vtkPVGenerateProcessIds.h
include/paraview-${PV_VER}/vtkPVGeometryFilter.h
include/paraview-${PV_VER}/vtkPVGhostCellsGenerator.h
include/paraview-${PV_VER}/vtkPVGlyphFilter.h
@@ -2831,8 +2943,6 @@ include/paraview-${PV_VER}/vtkPVMultiServerDataSource.h
include/paraview-${PV_VER}/vtkPVMultiSliceView.h
include/paraview-${PV_VER}/vtkPVNullSource.h
include/paraview-${PV_VER}/vtkPVOpenGLInformation.h
-include/paraview-${PV_VER}/vtkPVOptions.h
-include/paraview-${PV_VER}/vtkPVOptionsXMLParser.h
include/paraview-${PV_VER}/vtkPVOrthographicSliceView.h
include/paraview-${PV_VER}/vtkPVPLYWriter.h
include/paraview-${PV_VER}/vtkPVParallelCoordinatesRepresentation.h
@@ -2859,6 +2969,7 @@ include/paraview-${PV_VER}/vtkPVPythonModule.h
include/paraview-${PV_VER}/vtkPVPythonPluginInterface.h
include/paraview-${PV_VER}/vtkPVRampKeyFrame.h
include/paraview-${PV_VER}/vtkPVRayCastPickingHelper.h
+include/paraview-${PV_VER}/vtkPVRemoveGhosts.h
include/paraview-${PV_VER}/vtkPVRenderView.h
include/paraview-${PV_VER}/vtkPVRenderViewDataDeliveryManager.h
include/paraview-${PV_VER}/vtkPVRenderViewSettings.h
@@ -2908,9 +3019,11 @@ include/paraview-${PV_VER}/vtkPVVTKExtensionsAMRModule.h
include/paraview-${PV_VER}/vtkPVVTKExtensionsCoreModule.h
include/paraview-${PV_VER}/vtkPVVTKExtensionsExtractionModule.h
include/paraview-${PV_VER}/vtkPVVTKExtensionsExtractionPythonModule.h
+include/paraview-${PV_VER}/vtkPVVTKExtensionsFiltersFlowPathsModule.h
include/paraview-${PV_VER}/vtkPVVTKExtensionsFiltersGeneralModule.h
include/paraview-${PV_VER}/vtkPVVTKExtensionsFiltersMaterialInterfaceModule.h
include/paraview-${PV_VER}/vtkPVVTKExtensionsFiltersParallelDIY2Module.h
+include/paraview-${PV_VER}/vtkPVVTKExtensionsFiltersParallelModule.h
include/paraview-${PV_VER}/vtkPVVTKExtensionsFiltersPythonModule.h
include/paraview-${PV_VER}/vtkPVVTKExtensionsFiltersRenderingModule.h
include/paraview-${PV_VER}/vtkPVVTKExtensionsFiltersStatisticsModule.h
@@ -2921,11 +3034,13 @@ include/paraview-${PV_VER}/vtkPVVTKExtensionsIOEnSightModule.h
include/paraview-${PV_VER}/vtkPVVTKExtensionsIOExodusModule.h
include/paraview-${PV_VER}/vtkPVVTKExtensionsIOGeneralModule.h
include/paraview-${PV_VER}/vtkPVVTKExtensionsIOImageModule.h
+include/paraview-${PV_VER}/vtkPVVTKExtensionsIOImportModule.h
include/paraview-${PV_VER}/vtkPVVTKExtensionsIOSPCTHModule.h
include/paraview-${PV_VER}/vtkPVVTKExtensionsInteractionStyleModule.h
include/paraview-${PV_VER}/vtkPVVTKExtensionsMiscModule.h
include/paraview-${PV_VER}/vtkPVVTKExtensionsPointsModule.h
include/paraview-${PV_VER}/vtkPVVersion.h
+include/paraview-${PV_VER}/vtkPVVersionQuick.h
include/paraview-${PV_VER}/vtkPVView.h
include/paraview-${PV_VER}/vtkPVWebApplication.h
include/paraview-${PV_VER}/vtkPVWebExporter.h
@@ -2978,13 +3093,15 @@ include/paraview-${PV_VER}/vtkParametricTorus.h
include/paraview-${PV_VER}/vtkParse.h
include/paraview-${PV_VER}/vtkParseAttributes.h
include/paraview-${PV_VER}/vtkParseData.h
-include/paraview-${PV_VER}/vtkParseDependencyTracking.h
+include/paraview-${PV_VER}/vtkParseDepends.h
include/paraview-${PV_VER}/vtkParseExtras.h
include/paraview-${PV_VER}/vtkParseHierarchy.h
include/paraview-${PV_VER}/vtkParseMain.h
include/paraview-${PV_VER}/vtkParseMangle.h
include/paraview-${PV_VER}/vtkParseMerge.h
+include/paraview-${PV_VER}/vtkParseMethodType.h
include/paraview-${PV_VER}/vtkParsePreprocess.h
+include/paraview-${PV_VER}/vtkParseProperties.h
include/paraview-${PV_VER}/vtkParseString.h
include/paraview-${PV_VER}/vtkParseSystem.h
include/paraview-${PV_VER}/vtkParseType.h
@@ -3103,6 +3220,7 @@ include/paraview-${PV_VER}/vtkPoints2D.h
include/paraview-${PV_VER}/vtkPointsProjectedHull.h
include/paraview-${PV_VER}/vtkPoissonDiskSampler.h
include/paraview-${PV_VER}/vtkPolarAxesActor.h
+include/paraview-${PV_VER}/vtkPolarAxesActor2D.h
include/paraview-${PV_VER}/vtkPolarAxesRepresentation.h
include/paraview-${PV_VER}/vtkPolyData.h
include/paraview-${PV_VER}/vtkPolyDataAlgorithm.h
@@ -3248,6 +3366,7 @@ include/paraview-${PV_VER}/vtkRIBProperty.h
include/paraview-${PV_VER}/vtkRISReader.h
include/paraview-${PV_VER}/vtkRTAnalyticSource.h
include/paraview-${PV_VER}/vtkRTXMLPolyDataReader.h
+include/paraview-${PV_VER}/vtkRadialGridActor2D.h
include/paraview-${PV_VER}/vtkRadiusOutlierRemoval.h
include/paraview-${PV_VER}/vtkRandomAttributeGenerator.h
include/paraview-${PV_VER}/vtkRandomGraphSource.h
@@ -3261,7 +3380,6 @@ include/paraview-${PV_VER}/vtkRawImageFileSeriesReader.h
include/paraview-${PV_VER}/vtkRayCastImageDisplayHelper.h
include/paraview-${PV_VER}/vtkRayCastStructures.h
include/paraview-${PV_VER}/vtkReaderAlgorithm.h
-include/paraview-${PV_VER}/vtkRealtimeAnimationPlayer.h
include/paraview-${PV_VER}/vtkRearrangeFields.h
include/paraview-${PV_VER}/vtkRecoverGeometryWireframe.h
include/paraview-${PV_VER}/vtkRect.h
@@ -3300,6 +3418,7 @@ include/paraview-${PV_VER}/vtkRemotingClientServerStreamModule.h
include/paraview-${PV_VER}/vtkRemotingCoreConfiguration.h
include/paraview-${PV_VER}/vtkRemotingCoreModule.h
include/paraview-${PV_VER}/vtkRemotingExportModule.h
+include/paraview-${PV_VER}/vtkRemotingImportModule.h
include/paraview-${PV_VER}/vtkRemotingLiveModule.h
include/paraview-${PV_VER}/vtkRemotingMiscModule.h
include/paraview-${PV_VER}/vtkRemotingServerManagerModule.h
@@ -3392,6 +3511,7 @@ include/paraview-${PV_VER}/vtkSIDoubleMapProperty.h
include/paraview-${PV_VER}/vtkSIDoubleVectorProperty.h
include/paraview-${PV_VER}/vtkSIIdTypeVectorProperty.h
include/paraview-${PV_VER}/vtkSIImageTextureProxy.h
+include/paraview-${PV_VER}/vtkSIImporterProxy.h
include/paraview-${PV_VER}/vtkSIIndexSelectionProperty.h
include/paraview-${PV_VER}/vtkSIInputProperty.h
include/paraview-${PV_VER}/vtkSIIntVectorProperty.h
@@ -3461,6 +3581,7 @@ include/paraview-${PV_VER}/vtkSMDataDeliveryManagerProxy.h
include/paraview-${PV_VER}/vtkSMDataExtractWriterProxy.h
include/paraview-${PV_VER}/vtkSMDataSourceProxy.h
include/paraview-${PV_VER}/vtkSMDataTypeDomain.h
+include/paraview-${PV_VER}/vtkSMDataTypeQueryDomain.h
include/paraview-${PV_VER}/vtkSMDeserializer.h
include/paraview-${PV_VER}/vtkSMDeserializerProtobuf.h
include/paraview-${PV_VER}/vtkSMDeserializerXML.h
@@ -3492,6 +3613,8 @@ include/paraview-${PV_VER}/vtkSMGL2PSExporterProxy.h
include/paraview-${PV_VER}/vtkSMIdTypeVectorProperty.h
include/paraview-${PV_VER}/vtkSMImageExtractWriterProxy.h
include/paraview-${PV_VER}/vtkSMImplicitPlaneRepresentationProxy.h
+include/paraview-${PV_VER}/vtkSMImporterFactory.h
+include/paraview-${PV_VER}/vtkSMImporterProxy.h
include/paraview-${PV_VER}/vtkSMIndexSelectionDomain.h
include/paraview-${PV_VER}/vtkSMInputArrayDomain.h
include/paraview-${PV_VER}/vtkSMInputFileNameDomain.h
@@ -3676,6 +3799,7 @@ include/paraview-${PV_VER}/vtkSelectionSource.h
include/paraview-${PV_VER}/vtkSelector.h
include/paraview-${PV_VER}/vtkSequenceAnimationPlayer.h
include/paraview-${PV_VER}/vtkSequencePass.h
+include/paraview-${PV_VER}/vtkSerializer.h
include/paraview-${PV_VER}/vtkServerSocket.h
include/paraview-${PV_VER}/vtkSession.h
include/paraview-${PV_VER}/vtkSessionIterator.h
@@ -3755,6 +3879,7 @@ include/paraview-${PV_VER}/vtkSplineWidget2.h
include/paraview-${PV_VER}/vtkSplitByCellScalarFilter.h
include/paraview-${PV_VER}/vtkSplitColumnComponents.h
include/paraview-${PV_VER}/vtkSplitField.h
+include/paraview-${PV_VER}/vtkSplitSharpEdgesPolyData.h
include/paraview-${PV_VER}/vtkSpreadSheetRepresentation.h
include/paraview-${PV_VER}/vtkSpreadSheetView.h
include/paraview-${PV_VER}/vtkSpyPlotBlock.h
@@ -3786,6 +3911,7 @@ include/paraview-${PV_VER}/vtkStdFunctionArray.h
include/paraview-${PV_VER}/vtkStdString.h
include/paraview-${PV_VER}/vtkSteeringDataGenerator.h
include/paraview-${PV_VER}/vtkStereoCompositor.h
+include/paraview-${PV_VER}/vtkStitchImageDataWithGhosts.h
include/paraview-${PV_VER}/vtkStrahlerMetric.h
include/paraview-${PV_VER}/vtkStreaklineFilter.h
include/paraview-${PV_VER}/vtkStreamGraph.h
@@ -3808,6 +3934,7 @@ include/paraview-${PV_VER}/vtkStringWriter.h
include/paraview-${PV_VER}/vtkStripper.h
include/paraview-${PV_VER}/vtkStructuredAMRGridConnectivity.h
include/paraview-${PV_VER}/vtkStructuredAMRNeighbor.h
+include/paraview-${PV_VER}/vtkStructuredCellArray.h
include/paraview-${PV_VER}/vtkStructuredData.h
include/paraview-${PV_VER}/vtkStructuredDataPlaneCutter.h
include/paraview-${PV_VER}/vtkStructuredExtent.h
@@ -3824,6 +3951,9 @@ include/paraview-${PV_VER}/vtkStructuredGridReader.h
include/paraview-${PV_VER}/vtkStructuredGridVolumeRepresentation.h
include/paraview-${PV_VER}/vtkStructuredGridWriter.h
include/paraview-${PV_VER}/vtkStructuredNeighbor.h
+include/paraview-${PV_VER}/vtkStructuredPointArray.h
+include/paraview-${PV_VER}/vtkStructuredPointBackend.h
+include/paraview-${PV_VER}/vtkStructuredPointBackend.txx
include/paraview-${PV_VER}/vtkStructuredPoints.h
include/paraview-${PV_VER}/vtkStructuredPointsCollection.h
include/paraview-${PV_VER}/vtkStructuredPointsGeometryFilter.h
@@ -3864,6 +3994,7 @@ include/paraview-${PV_VER}/vtkTIFFWriter.h
include/paraview-${PV_VER}/vtkTRUCHASReader.h
include/paraview-${PV_VER}/vtkTable.h
include/paraview-${PV_VER}/vtkTableAlgorithm.h
+include/paraview-${PV_VER}/vtkTableBasedClipCases.h
include/paraview-${PV_VER}/vtkTableBasedClipDataSet.h
include/paraview-${PV_VER}/vtkTableFFT.h
include/paraview-${PV_VER}/vtkTableReader.h
@@ -3887,6 +4018,7 @@ include/paraview-${PV_VER}/vtkTemporalInterpolatedVelocityField.h
include/paraview-${PV_VER}/vtkTemporalInterpolator.h
include/paraview-${PV_VER}/vtkTemporalPathLineFilter.h
include/paraview-${PV_VER}/vtkTemporalShiftScale.h
+include/paraview-${PV_VER}/vtkTemporalSmoothing.h
include/paraview-${PV_VER}/vtkTemporalSnapToTimeStep.h
include/paraview-${PV_VER}/vtkTemporalStatistics.h
include/paraview-${PV_VER}/vtkTensorGlyph.h
@@ -3906,6 +4038,7 @@ include/paraview-${PV_VER}/vtkTestErrorObserver.h
include/paraview-${PV_VER}/vtkTestUtilities.h
include/paraview-${PV_VER}/vtkTesting.h
include/paraview-${PV_VER}/vtkTestingColors.h
+include/paraview-${PV_VER}/vtkTestingCoreModule.h
include/paraview-${PV_VER}/vtkTestingInteractor.h
include/paraview-${PV_VER}/vtkTestingObjectFactory.h
include/paraview-${PV_VER}/vtkTestingRenderingModule.h
@@ -3959,6 +4092,12 @@ include/paraview-${PV_VER}/vtkTimeStepProgressFilter.h
include/paraview-${PV_VER}/vtkTimeToTextConvertor.h
include/paraview-${PV_VER}/vtkTimerLog.h
include/paraview-${PV_VER}/vtkTimestepsAnimationPlayer.h
+include/paraview-${PV_VER}/vtkToAffineArrayStrategy.h
+include/paraview-${PV_VER}/vtkToConstantArrayStrategy.h
+include/paraview-${PV_VER}/vtkToImplicitArrayFilter.h
+include/paraview-${PV_VER}/vtkToImplicitRamerDouglasPeuckerStrategy.h
+include/paraview-${PV_VER}/vtkToImplicitStrategy.h
+include/paraview-${PV_VER}/vtkToImplicitTypeErasureStrategy.h
include/paraview-${PV_VER}/vtkToneMappingPass.h
include/paraview-${PV_VER}/vtkTooltipItem.h
include/paraview-${PV_VER}/vtkTrackballPan.h
@@ -4081,6 +4220,7 @@ include/paraview-${PV_VER}/vtkUnstructuredGridWriter.h
include/paraview-${PV_VER}/vtkUnstructuredPOPReader.h
include/paraview-${PV_VER}/vtkUpdateCellsV8toV9.h
include/paraview-${PV_VER}/vtkUtilitiesPythonInitializerModule.h
+include/paraview-${PV_VER}/vtkUtilitiesPythonInterpreterPathModule.h
include/paraview-${PV_VER}/vtkVASPAnimationReader.h
include/paraview-${PV_VER}/vtkVASPTessellationReader.h
include/paraview-${PV_VER}/vtkVPICReader.h
@@ -4108,6 +4248,7 @@ include/paraview-${PV_VER}/vtkVeraOutReader.h
include/paraview-${PV_VER}/vtkVersion.h
include/paraview-${PV_VER}/vtkVersionFull.h
include/paraview-${PV_VER}/vtkVersionMacros.h
+include/paraview-${PV_VER}/vtkVersionQuick.h
include/paraview-${PV_VER}/vtkVertex.h
include/paraview-${PV_VER}/vtkVertexDegree.h
include/paraview-${PV_VER}/vtkVertexGlyphFilter.h
@@ -4318,7 +4459,6 @@ include/paraview-${PV_VER}/vtk_jsoncpp.h
include/paraview-${PV_VER}/vtk_jsoncpp_fwd.h
include/paraview-${PV_VER}/vtk_kissfft.h
include/paraview-${PV_VER}/vtk_kwiml.h
-include/paraview-${PV_VER}/vtk_libharu.h
include/paraview-${PV_VER}/vtk_libproj.h
include/paraview-${PV_VER}/vtk_libxml2.h
include/paraview-${PV_VER}/vtk_loguru.h
@@ -4327,6 +4467,7 @@ include/paraview-${PV_VER}/vtk_lzma.h
include/paraview-${PV_VER}/vtk_netcdf.h
include/paraview-${PV_VER}/vtk_nlohmannjson.h
include/paraview-${PV_VER}/vtk_ogg.h
+include/paraview-${PV_VER}/vtk_pegtl.h
include/paraview-${PV_VER}/vtk_png.h
include/paraview-${PV_VER}/vtk_protobuf.h
include/paraview-${PV_VER}/vtk_pugixml.h
@@ -4359,7 +4500,6 @@ include/paraview-${PV_VER}/vtkcli11/CLI/Validators.hpp
include/paraview-${PV_VER}/vtkcli11/CLI/Version.hpp
include/paraview-${PV_VER}/vtkdiy2/include/vtkdiy2/algorithms.hpp
include/paraview-${PV_VER}/vtkdiy2/include/vtkdiy2/assigner.hpp
-include/paraview-${PV_VER}/vtkdiy2/include/vtkdiy2/chobo/small_vector.hpp
include/paraview-${PV_VER}/vtkdiy2/include/vtkdiy2/collection.hpp
include/paraview-${PV_VER}/vtkdiy2/include/vtkdiy2/communicator.hpp
include/paraview-${PV_VER}/vtkdiy2/include/vtkdiy2/constants.h
@@ -4400,6 +4540,7 @@ include/paraview-${PV_VER}/vtkdiy2/include/vtkdiy2/io/bov.hpp
include/paraview-${PV_VER}/vtkdiy2/include/vtkdiy2/io/numpy.hpp
include/paraview-${PV_VER}/vtkdiy2/include/vtkdiy2/io/shared.hpp
include/paraview-${PV_VER}/vtkdiy2/include/vtkdiy2/io/utils.hpp
+include/paraview-${PV_VER}/vtkdiy2/include/vtkdiy2/itlib/small_vector.hpp
include/paraview-${PV_VER}/vtkdiy2/include/vtkdiy2/link.hpp
include/paraview-${PV_VER}/vtkdiy2/include/vtkdiy2/log.hpp
include/paraview-${PV_VER}/vtkdiy2/include/vtkdiy2/master.hpp
@@ -4454,24 +4595,231 @@ include/paraview-${PV_VER}/vtkfast_float/vtkfast_float/float_common.h
include/paraview-${PV_VER}/vtkfast_float/vtkfast_float/parse_number.h
include/paraview-${PV_VER}/vtkfast_float/vtkfast_float/simple_decimal_conversion.h
include/paraview-${PV_VER}/vtkfast_float/vtkfast_float/vtkfast_float_mangle.h
-include/paraview-${PV_VER}/vtkh5part/H5Block.h
-include/paraview-${PV_VER}/vtkh5part/H5BlockErrors.h
-include/paraview-${PV_VER}/vtkh5part/H5BlockPrivate.h
-include/paraview-${PV_VER}/vtkh5part/H5BlockReadWrite.h
-include/paraview-${PV_VER}/vtkh5part/H5BlockTypes.h
-include/paraview-${PV_VER}/vtkh5part/H5MultiBlock.h
-include/paraview-${PV_VER}/vtkh5part/H5MultiBlockErrors.h
-include/paraview-${PV_VER}/vtkh5part/H5MultiBlockPrivate.h
-include/paraview-${PV_VER}/vtkh5part/H5MultiBlockReadWrite.h
-include/paraview-${PV_VER}/vtkh5part/H5MultiBlockTypes.h
-include/paraview-${PV_VER}/vtkh5part/H5Part.h
-include/paraview-${PV_VER}/vtkh5part/H5PartAttrib.h
-include/paraview-${PV_VER}/vtkh5part/H5PartErrors.h
-include/paraview-${PV_VER}/vtkh5part/H5PartF.h
-include/paraview-${PV_VER}/vtkh5part/H5PartPrivate.h
-include/paraview-${PV_VER}/vtkh5part/H5PartTypes.h
-include/paraview-${PV_VER}/vtkh5part/Underscore.h
-include/paraview-${PV_VER}/vtkh5part/vtkh5part_export.h
+include/paraview-${PV_VER}/vtkfmt/vtkfmt/args.h
+include/paraview-${PV_VER}/vtkfmt/vtkfmt/chrono.h
+include/paraview-${PV_VER}/vtkfmt/vtkfmt/color.h
+include/paraview-${PV_VER}/vtkfmt/vtkfmt/compile.h
+include/paraview-${PV_VER}/vtkfmt/vtkfmt/core.h
+include/paraview-${PV_VER}/vtkfmt/vtkfmt/format-inl.h
+include/paraview-${PV_VER}/vtkfmt/vtkfmt/format.h
+include/paraview-${PV_VER}/vtkfmt/vtkfmt/os.h
+include/paraview-${PV_VER}/vtkfmt/vtkfmt/ostream.h
+include/paraview-${PV_VER}/vtkfmt/vtkfmt/printf.h
+include/paraview-${PV_VER}/vtkfmt/vtkfmt/ranges.h
+include/paraview-${PV_VER}/vtkfmt/vtkfmt/std.h
+include/paraview-${PV_VER}/vtkfmt/vtkfmt/xchar.h
+include/paraview-${PV_VER}/vtkh5part/src/H5Block.h
+include/paraview-${PV_VER}/vtkh5part/src/H5BlockErrors.h
+include/paraview-${PV_VER}/vtkh5part/src/H5BlockPrivate.h
+include/paraview-${PV_VER}/vtkh5part/src/H5BlockReadWrite.h
+include/paraview-${PV_VER}/vtkh5part/src/H5BlockTypes.h
+include/paraview-${PV_VER}/vtkh5part/src/H5MultiBlock.h
+include/paraview-${PV_VER}/vtkh5part/src/H5MultiBlockErrors.h
+include/paraview-${PV_VER}/vtkh5part/src/H5MultiBlockPrivate.h
+include/paraview-${PV_VER}/vtkh5part/src/H5MultiBlockReadWrite.h
+include/paraview-${PV_VER}/vtkh5part/src/H5MultiBlockTypes.h
+include/paraview-${PV_VER}/vtkh5part/src/H5Part.h
+include/paraview-${PV_VER}/vtkh5part/src/H5PartAttrib.h
+include/paraview-${PV_VER}/vtkh5part/src/H5PartErrors.h
+include/paraview-${PV_VER}/vtkh5part/src/H5PartF.h
+include/paraview-${PV_VER}/vtkh5part/src/H5PartPrivate.h
+include/paraview-${PV_VER}/vtkh5part/src/H5PartTypes.h
+include/paraview-${PV_VER}/vtkh5part/src/Underscore.h
+include/paraview-${PV_VER}/vtkh5part/src/vtk_h5part_mangle.h
+include/paraview-${PV_VER}/vtkh5part/src/vtkh5part_export.h
+include/paraview-${PV_VER}/vtkioss/Ioss_Assembly.h
+include/paraview-${PV_VER}/vtkioss/Ioss_BasisVariableType.h
+include/paraview-${PV_VER}/vtkioss/Ioss_Blob.h
+include/paraview-${PV_VER}/vtkioss/Ioss_BoundingBox.h
+include/paraview-${PV_VER}/vtkioss/Ioss_ChainGenerator.h
+include/paraview-${PV_VER}/vtkioss/Ioss_CodeTypes.h
+include/paraview-${PV_VER}/vtkioss/Ioss_CommSet.h
+include/paraview-${PV_VER}/vtkioss/Ioss_Compare.h
+include/paraview-${PV_VER}/vtkioss/Ioss_ComposedVariableType.h
+include/paraview-${PV_VER}/vtkioss/Ioss_CompositeVariableType.h
+include/paraview-${PV_VER}/vtkioss/Ioss_ConcreteVariableType.h
+include/paraview-${PV_VER}/vtkioss/Ioss_ConstructedVariableType.h
+include/paraview-${PV_VER}/vtkioss/Ioss_CoordinateFrame.h
+include/paraview-${PV_VER}/vtkioss/Ioss_CopyDatabase.h
+include/paraview-${PV_VER}/vtkioss/Ioss_DBUsage.h
+include/paraview-${PV_VER}/vtkioss/Ioss_DataPool.h
+include/paraview-${PV_VER}/vtkioss/Ioss_DataSize.h
+include/paraview-${PV_VER}/vtkioss/Ioss_DatabaseIO.h
+include/paraview-${PV_VER}/vtkioss/Ioss_Doxygen.h
+include/paraview-${PV_VER}/vtkioss/Ioss_EdgeBlock.h
+include/paraview-${PV_VER}/vtkioss/Ioss_EdgeSet.h
+include/paraview-${PV_VER}/vtkioss/Ioss_ElementBlock.h
+include/paraview-${PV_VER}/vtkioss/Ioss_ElementPermutation.h
+include/paraview-${PV_VER}/vtkioss/Ioss_ElementSet.h
+include/paraview-${PV_VER}/vtkioss/Ioss_ElementTopology.h
+include/paraview-${PV_VER}/vtkioss/Ioss_ElementVariableType.h
+include/paraview-${PV_VER}/vtkioss/Ioss_EntityBlock.h
+include/paraview-${PV_VER}/vtkioss/Ioss_EntitySet.h
+include/paraview-${PV_VER}/vtkioss/Ioss_EntityType.h
+include/paraview-${PV_VER}/vtkioss/Ioss_Enumerate.h
+include/paraview-${PV_VER}/vtkioss/Ioss_FaceBlock.h
+include/paraview-${PV_VER}/vtkioss/Ioss_FaceGenerator.h
+include/paraview-${PV_VER}/vtkioss/Ioss_FaceSet.h
+include/paraview-${PV_VER}/vtkioss/Ioss_Field.h
+include/paraview-${PV_VER}/vtkioss/Ioss_FieldManager.h
+include/paraview-${PV_VER}/vtkioss/Ioss_FileInfo.h
+include/paraview-${PV_VER}/vtkioss/Ioss_GetLongOpt.h
+include/paraview-${PV_VER}/vtkioss/Ioss_Getline.h
+include/paraview-${PV_VER}/vtkioss/Ioss_Glob.h
+include/paraview-${PV_VER}/vtkioss/Ioss_GroupingEntity.h
+include/paraview-${PV_VER}/vtkioss/Ioss_IOFactory.h
+include/paraview-${PV_VER}/vtkioss/Ioss_Initializer.h
+include/paraview-${PV_VER}/vtkioss/Ioss_Map.h
+include/paraview-${PV_VER}/vtkioss/Ioss_MemoryUtils.h
+include/paraview-${PV_VER}/vtkioss/Ioss_MeshCopyOptions.h
+include/paraview-${PV_VER}/vtkioss/Ioss_MeshType.h
+include/paraview-${PV_VER}/vtkioss/Ioss_NamedSuffixVariableType.h
+include/paraview-${PV_VER}/vtkioss/Ioss_NodeBlock.h
+include/paraview-${PV_VER}/vtkioss/Ioss_NodeSet.h
+include/paraview-${PV_VER}/vtkioss/Ioss_NullEntity.h
+include/paraview-${PV_VER}/vtkioss/Ioss_ParallelUtils.h
+include/paraview-${PV_VER}/vtkioss/Ioss_Property.h
+include/paraview-${PV_VER}/vtkioss/Ioss_PropertyManager.h
+include/paraview-${PV_VER}/vtkioss/Ioss_QuadratureVariableType.h
+include/paraview-${PV_VER}/vtkioss/Ioss_Region.h
+include/paraview-${PV_VER}/vtkioss/Ioss_ScopeGuard.h
+include/paraview-${PV_VER}/vtkioss/Ioss_SerializeIO.h
+include/paraview-${PV_VER}/vtkioss/Ioss_SideBlock.h
+include/paraview-${PV_VER}/vtkioss/Ioss_SideSet.h
+include/paraview-${PV_VER}/vtkioss/Ioss_SmartAssert.h
+include/paraview-${PV_VER}/vtkioss/Ioss_Sort.h
+include/paraview-${PV_VER}/vtkioss/Ioss_StandardElementTypes.h
+include/paraview-${PV_VER}/vtkioss/Ioss_State.h
+include/paraview-${PV_VER}/vtkioss/Ioss_StructuredBlock.h
+include/paraview-${PV_VER}/vtkioss/Ioss_SubSystem.h
+include/paraview-${PV_VER}/vtkioss/Ioss_SurfaceSplit.h
+include/paraview-${PV_VER}/vtkioss/Ioss_Tracer.h
+include/paraview-${PV_VER}/vtkioss/Ioss_Transform.h
+include/paraview-${PV_VER}/vtkioss/Ioss_TransformFactory.h
+include/paraview-${PV_VER}/vtkioss/Ioss_Utils.h
+include/paraview-${PV_VER}/vtkioss/Ioss_VariableType.h
+include/paraview-${PV_VER}/vtkioss/Ioss_Version.h
+include/paraview-${PV_VER}/vtkioss/Ioss_ZoneConnectivity.h
+include/paraview-${PV_VER}/vtkioss/SEACASIoss_config.h
+include/paraview-${PV_VER}/vtkioss/bhopscotch_map.h
+include/paraview-${PV_VER}/vtkioss/bhopscotch_set.h
+include/paraview-${PV_VER}/vtkioss/cgns/Iocgns_DatabaseIO.h
+include/paraview-${PV_VER}/vtkioss/cgns/Iocgns_IOFactory.h
+include/paraview-${PV_VER}/vtkioss/cgns/Iocgns_Initializer.h
+include/paraview-${PV_VER}/vtkioss/cgns/Iocgns_StructuredZoneData.h
+include/paraview-${PV_VER}/vtkioss/cgns/Iocgns_Utils.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Beam2.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Beam3.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Beam4.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Edge2.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Edge2D2.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Edge2D3.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Edge3.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Edge4.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Hex16.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Hex20.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Hex27.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Hex32.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Hex64.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Hex8.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Hex9.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Node.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Pyramid13.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Pyramid14.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Pyramid18.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Pyramid19.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Pyramid5.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Quad12.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Quad16.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Quad4.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Quad6.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Quad8.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Quad9.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Shell4.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Shell8.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Shell9.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_ShellLine2D2.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_ShellLine2D3.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Sphere.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Spring2.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Spring3.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Super.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Tet10.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Tet11.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Tet14.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Tet15.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Tet16.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Tet4.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Tet40.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Tet7.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Tet8.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Tri13.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Tri3.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Tri4.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Tri4a.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Tri6.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Tri7.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Tri9.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_TriShell3.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_TriShell4.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_TriShell6.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_TriShell7.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Unknown.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Wedge12.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Wedge15.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Wedge16.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Wedge18.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Wedge20.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Wedge21.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Wedge24.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Wedge52.h
+include/paraview-${PV_VER}/vtkioss/elements/Ioss_Wedge6.h
+include/paraview-${PV_VER}/vtkioss/exodus/Ioex_BaseDatabaseIO.h
+include/paraview-${PV_VER}/vtkioss/exodus/Ioex_DatabaseIO.h
+include/paraview-${PV_VER}/vtkioss/exodus/Ioex_IOFactory.h
+include/paraview-${PV_VER}/vtkioss/exodus/Ioex_Internals.h
+include/paraview-${PV_VER}/vtkioss/exodus/Ioex_SuperElement.h
+include/paraview-${PV_VER}/vtkioss/exodus/Ioex_Utils.h
+include/paraview-${PV_VER}/vtkioss/gen_struc/Iogs_DatabaseIO.h
+include/paraview-${PV_VER}/vtkioss/gen_struc/Iogs_GeneratedMesh.h
+include/paraview-${PV_VER}/vtkioss/generated/Iogn_DashSurfaceMesh.h
+include/paraview-${PV_VER}/vtkioss/generated/Iogn_DatabaseIO.h
+include/paraview-${PV_VER}/vtkioss/generated/Iogn_GeneratedMesh.h
+include/paraview-${PV_VER}/vtkioss/heartbeat/Iohb_DatabaseIO.h
+include/paraview-${PV_VER}/vtkioss/heartbeat/Iohb_Layout.h
+include/paraview-${PV_VER}/vtkioss/hopscotch_growth_policy.h
+include/paraview-${PV_VER}/vtkioss/hopscotch_hash.h
+include/paraview-${PV_VER}/vtkioss/hopscotch_map.h
+include/paraview-${PV_VER}/vtkioss/hopscotch_set.h
+include/paraview-${PV_VER}/vtkioss/init/Ionit_Initializer.h
+include/paraview-${PV_VER}/vtkioss/iocatalyst_export.h
+include/paraview-${PV_VER}/vtkioss/iocgns_export.h
+include/paraview-${PV_VER}/vtkioss/ioex_export.h
+include/paraview-${PV_VER}/vtkioss/ioexnl_export.h
+include/paraview-${PV_VER}/vtkioss/iogn_export.h
+include/paraview-${PV_VER}/vtkioss/iogs_export.h
+include/paraview-${PV_VER}/vtkioss/iohb_export.h
+include/paraview-${PV_VER}/vtkioss/ionit_export.h
+include/paraview-${PV_VER}/vtkioss/ionull_export.h
+include/paraview-${PV_VER}/vtkioss/ioss_export.h
+include/paraview-${PV_VER}/vtkioss/iotr_export.h
+include/paraview-${PV_VER}/vtkioss/null/Ionull_DatabaseIO.h
+include/paraview-${PV_VER}/vtkioss/null/Ionull_IOFactory.h
+include/paraview-${PV_VER}/vtkioss/pdqsort.h
+include/paraview-${PV_VER}/vtkioss/robin_growth_policy.h
+include/paraview-${PV_VER}/vtkioss/robin_hash.h
+include/paraview-${PV_VER}/vtkioss/robin_map.h
+include/paraview-${PV_VER}/vtkioss/robin_set.h
+include/paraview-${PV_VER}/vtkioss/tokenize.h
+include/paraview-${PV_VER}/vtkioss/transform/Iotr_Initializer.h
+include/paraview-${PV_VER}/vtkioss/transform/Iotr_MinMax.h
+include/paraview-${PV_VER}/vtkioss/transform/Iotr_Offset.h
+include/paraview-${PV_VER}/vtkioss/transform/Iotr_Offset3D.h
+include/paraview-${PV_VER}/vtkioss/transform/Iotr_Scale.h
+include/paraview-${PV_VER}/vtkioss/transform/Iotr_Scale3D.h
+include/paraview-${PV_VER}/vtkioss/transform/Iotr_Tensor.h
+include/paraview-${PV_VER}/vtkioss/transform/Iotr_VectorMagnitude.h
+include/paraview-${PV_VER}/vtkioss/vtk_ioss_mangle.h
include/paraview-${PV_VER}/vtkkissfft/_kiss_fft_guts.h
include/paraview-${PV_VER}/vtkkissfft/kiss_fft.h
include/paraview-${PV_VER}/vtkkissfft/kiss_fft_exports.h
@@ -4630,6 +4978,10 @@ include/paraview-${PV_VER}/vtksys/String.hxx
include/paraview-${PV_VER}/vtksys/System.h
include/paraview-${PV_VER}/vtksys/SystemInformation.hxx
include/paraview-${PV_VER}/vtksys/SystemTools.hxx
+include/paraview-${PV_VER}/vtkverdict/VerdictVector.hpp
+include/paraview-${PV_VER}/vtkverdict/verdict.h
+include/paraview-${PV_VER}/vtkverdict/verdict_config.h
+include/paraview-${PV_VER}/vtkverdict/verdict_defines.hpp
include/paraview-${PV_VER}/vtkvpic/GridExchange.h
include/paraview-${PV_VER}/vtkvpic/VPICDataSet.h
include/paraview-${PV_VER}/vtkvpic/VPICDefinition.h
@@ -4857,6 +5209,7 @@ include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/cont/internal/DeviceAdapterMemoryM
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/cont/internal/DeviceAdapterMemoryManagerShared.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/cont/internal/FieldCollection.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/cont/internal/FunctorsGeneral.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/cont/internal/Hints.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/cont/internal/IteratorFromArrayPortal.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/cont/internal/KXSort.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/cont/internal/MapArrayPermutation.h
@@ -5013,6 +5366,7 @@ include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/contour/ContourFlyingEdges.
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/contour/ContourMarchingCells.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/contour/MIRFilter.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/contour/Slice.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/contour/SliceMultiple.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/contour/vtkm_filter_contour_export.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/contour/worklet/Clip.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/contour/worklet/ContourFlyingEdges.h
@@ -5083,6 +5437,7 @@ include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/field_transform/LogValues.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/field_transform/PointElevation.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/field_transform/PointTransform.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/field_transform/SphericalCoordinateTransform.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/field_transform/Warp.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/field_transform/WarpScalar.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/field_transform/WarpVector.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/field_transform/vtkm_filter_field_transform_export.h
@@ -5090,8 +5445,6 @@ include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/field_transform/worklet/Coo
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/field_transform/worklet/LogValues.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/field_transform/worklet/PointElevation.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/field_transform/worklet/PointTransform.h
-include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/field_transform/worklet/WarpScalar.h
-include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/field_transform/worklet/WarpVector.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/flow/FilterParticleAdvection.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/flow/FilterParticleAdvectionSteadyState.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/flow/FilterParticleAdvectionUnsteadyState.h
@@ -5212,6 +5565,7 @@ include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/mesh_info/worklet/cellmetri
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/mesh_info/worklet/cellmetrics/TypeOfCellTetrahedral.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/mesh_info/worklet/cellmetrics/TypeOfCellTriangle.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/multi_block/AmrArrays.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/multi_block/MergeDataSets.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/multi_block/vtkm_filter_multi_block_export.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/resampling/HistSampling.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/resampling/Probe.h
@@ -5222,16 +5576,23 @@ include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/ContourTree
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/ContourTreeUniformAugmented.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/ContourTreeUniformDistributed.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/DistributedBranchDecompositionFilter.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/SelectTopVolumeContoursFilter.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/internal/BranchDecompositionBlock.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/internal/ComputeBlockIndices.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/internal/ComputeDistributedBranchDecompositionFunctor.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/internal/ExchangeBranchEndsFunctor.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/internal/SelectTopVolumeContoursBlock.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/internal/SelectTopVolumeContoursFunctor.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/vtkm_filter_scalar_topology_export.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/ContourTreeUniform.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/ContourTreeUniformAugmented.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/branch_decomposition/HierarchicalVolumetricBranchDecomposer.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/branch_decomposition/hierarchical_volumetric_branch_decomposer/BranchEndComparator.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/branch_decomposition/hierarchical_volumetric_branch_decomposer/BranchEndGlobalUpdateWorklet.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/branch_decomposition/hierarchical_volumetric_branch_decomposer/CollapseBranchesPointerDoublingWorklet.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/branch_decomposition/hierarchical_volumetric_branch_decomposer/CollapseBranchesWorklet.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/branch_decomposition/hierarchical_volumetric_branch_decomposer/FindBestSupernodeWorklet.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/branch_decomposition/hierarchical_volumetric_branch_decomposer/GetOuterEndWorklet.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/branch_decomposition/hierarchical_volumetric_branch_decomposer/LocalBestUpDownByVolumeBestUpDownEdgeWorklet.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/branch_decomposition/hierarchical_volumetric_branch_decomposer/LocalBestUpDownByVolumeInitSuperarcListWorklet.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/branch_decomposition/hierarchical_volumetric_branch_decomposer/LocalBestUpDownByVolumeWorklet.h
@@ -5481,6 +5842,13 @@ include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/con
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/contourtree_distributed/tree_grafter/PermuteComparator.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/contourtree_distributed/tree_grafter/SuperNodeWhenComparator.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/contourtree_distributed/tree_grafter/SuperarcWasNotTransferredPredicate.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/select_top_volume_contours/BranchVolumeComparator.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/select_top_volume_contours/ClarifyBranchEndSupernodeTypeWorklet.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/select_top_volume_contours/GetBranchVolumeWorklet.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/scalar_topology/worklet/select_top_volume_contours/UpdateInfoByBranchDirectionWorklet.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/uncertainty/ContourUncertainUniform.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/uncertainty/ContourUncertainUniformMonteCarlo.h
+include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/uncertainty/vtkm_filter_uncertainty_export.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/vector_analysis/CrossProduct.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/vector_analysis/DotProduct.h
include/paraview-${PV_VER}/vtkvtkm/vtk-m/vtkm/filter/vector_analysis/Gradient.h
@@ -6044,7 +6412,6 @@ lib/cmake/paraview-${PV_VER}/vtk/FindOGG.cmake
lib/cmake/paraview-${PV_VER}/vtk/FindOSMesa.cmake
lib/cmake/paraview-${PV_VER}/vtk/FindOpenSlide.cmake
lib/cmake/paraview-${PV_VER}/vtk/FindOpenVR.cmake
-lib/cmake/paraview-${PV_VER}/vtk/FindOpenXR.cmake
lib/cmake/paraview-${PV_VER}/vtk/FindOpenXRRemoting.cmake
lib/cmake/paraview-${PV_VER}/vtk/FindPEGTL.cmake
lib/cmake/paraview-${PV_VER}/vtk/FindTBB.cmake
@@ -6090,12 +6457,16 @@ lib/cmake/paraview-${PV_VER}/vtk/vtkHashSource.cmake
lib/cmake/paraview-${PV_VER}/vtk/vtkModule.cmake
lib/cmake/paraview-${PV_VER}/vtk/vtkModuleGraphviz.cmake
lib/cmake/paraview-${PV_VER}/vtk/vtkModuleJson.cmake
+lib/cmake/paraview-${PV_VER}/vtk/vtkModuleSerialization.cmake
lib/cmake/paraview-${PV_VER}/vtk/vtkModuleTesting.cmake
lib/cmake/paraview-${PV_VER}/vtk/vtkModuleWrapJava.cmake
lib/cmake/paraview-${PV_VER}/vtk/vtkModuleWrapPython.cmake
lib/cmake/paraview-${PV_VER}/vtk/vtkObjectFactory.cmake
lib/cmake/paraview-${PV_VER}/vtk/vtkObjectFactory.cxx.in
lib/cmake/paraview-${PV_VER}/vtk/vtkObjectFactory.h.in
+lib/cmake/paraview-${PV_VER}/vtk/vtkSerializationLibrariesRegistrar.cxx.in
+lib/cmake/paraview-${PV_VER}/vtk/vtkSerializationLibraryRegistrar.cxx.in
+lib/cmake/paraview-${PV_VER}/vtk/vtkSerializationLibraryRegistrar.h.in
lib/cmake/paraview-${PV_VER}/vtk/vtkTestingDriver.cmake
lib/cmake/paraview-${PV_VER}/vtk/vtkTestingRenderingDriver.cmake
lib/cmake/paraview-${PV_VER}/vtk/vtkTopologicalSort.cmake
@@ -6194,7 +6565,6 @@ lib/libvtkContourLabelPluginCS.a
lib/libvtkDICOMParser-pv${PV_VER}.so
lib/libvtkDICOMParser-pv${PV_VER}.so.1
lib/libvtkDICOMParser-pv${PV_VER}.so.${PV_VER}
-lib/libvtkDSPDataModelCS.a
lib/libvtkDSPFiltersPluginCS.a
lib/libvtkDatamineReadersCS.a
lib/libvtkDigitalRocksFiltersCS.a
@@ -6289,6 +6659,10 @@ lib/libvtkFiltersPython-pv${PV_VER}.so
lib/libvtkFiltersPython-pv${PV_VER}.so.1
lib/libvtkFiltersPython-pv${PV_VER}.so.${PV_VER}
lib/libvtkFiltersPythonCS.a
+lib/libvtkFiltersReduction-pv${PV_VER}.so
+lib/libvtkFiltersReduction-pv${PV_VER}.so.1
+lib/libvtkFiltersReduction-pv${PV_VER}.so.${PV_VER}
+lib/libvtkFiltersReductionCS.a
lib/libvtkFiltersSources-pv${PV_VER}.so
lib/libvtkFiltersSources-pv${PV_VER}.so.1
lib/libvtkFiltersSources-pv${PV_VER}.so.${PV_VER}
@@ -6297,6 +6671,10 @@ lib/libvtkFiltersStatistics-pv${PV_VER}.so
lib/libvtkFiltersStatistics-pv${PV_VER}.so.1
lib/libvtkFiltersStatistics-pv${PV_VER}.so.${PV_VER}
lib/libvtkFiltersStatisticsCS.a
+lib/libvtkFiltersTemporal-pv${PV_VER}.so
+lib/libvtkFiltersTemporal-pv${PV_VER}.so.1
+lib/libvtkFiltersTemporal-pv${PV_VER}.so.${PV_VER}
+lib/libvtkFiltersTemporalCS.a
lib/libvtkFiltersTensor-pv${PV_VER}.so
lib/libvtkFiltersTensor-pv${PV_VER}.so.1
lib/libvtkFiltersTensor-pv${PV_VER}.so.${PV_VER}
@@ -6314,6 +6692,10 @@ lib/libvtkGUISupportQt-pv${PV_VER}.so
lib/libvtkGUISupportQt-pv${PV_VER}.so.1
lib/libvtkGUISupportQt-pv${PV_VER}.so.${PV_VER}
lib/libvtkGeodesicMeasurementFiltersCS.a
+lib/libvtkGeovisCore-pv${PV_VER}.so
+lib/libvtkGeovisCore-pv${PV_VER}.so.1
+lib/libvtkGeovisCore-pv${PV_VER}.so.${PV_VER}
+lib/libvtkGeovisCoreCS.a
lib/libvtkIOAMR-pv${PV_VER}.so
lib/libvtkIOAMR-pv${PV_VER}.so.1
lib/libvtkIOAMR-pv${PV_VER}.so.${PV_VER}
@@ -6346,6 +6728,10 @@ lib/libvtkIOCore-pv${PV_VER}.so
lib/libvtkIOCore-pv${PV_VER}.so.1
lib/libvtkIOCore-pv${PV_VER}.so.${PV_VER}
lib/libvtkIOCoreCS.a
+lib/libvtkIOERF-pv${PV_VER}.so
+lib/libvtkIOERF-pv${PV_VER}.so.1
+lib/libvtkIOERF-pv${PV_VER}.so.${PV_VER}
+lib/libvtkIOERFCS.a
lib/libvtkIOEnSight-pv${PV_VER}.so
lib/libvtkIOEnSight-pv${PV_VER}.so.1
lib/libvtkIOEnSight-pv${PV_VER}.so.${PV_VER}
@@ -6567,6 +6953,10 @@ lib/libvtkPVVTKExtensionsExtractionPython-pv${PV_VER}.so
lib/libvtkPVVTKExtensionsExtractionPython-pv${PV_VER}.so.1
lib/libvtkPVVTKExtensionsExtractionPython-pv${PV_VER}.so.${PV_VER}
lib/libvtkPVVTKExtensionsExtractionPythonCS.a
+lib/libvtkPVVTKExtensionsFiltersFlowPaths-pv${PV_VER}.so
+lib/libvtkPVVTKExtensionsFiltersFlowPaths-pv${PV_VER}.so.1
+lib/libvtkPVVTKExtensionsFiltersFlowPaths-pv${PV_VER}.so.${PV_VER}
+lib/libvtkPVVTKExtensionsFiltersFlowPathsCS.a
lib/libvtkPVVTKExtensionsFiltersGeneral-pv${PV_VER}.so
lib/libvtkPVVTKExtensionsFiltersGeneral-pv${PV_VER}.so.1
lib/libvtkPVVTKExtensionsFiltersGeneral-pv${PV_VER}.so.${PV_VER}
@@ -6575,6 +6965,10 @@ lib/libvtkPVVTKExtensionsFiltersMaterialInterface-pv${PV_VER}.so
lib/libvtkPVVTKExtensionsFiltersMaterialInterface-pv${PV_VER}.so.1
lib/libvtkPVVTKExtensionsFiltersMaterialInterface-pv${PV_VER}.so.${PV_VER}
lib/libvtkPVVTKExtensionsFiltersMaterialInterfaceCS.a
+lib/libvtkPVVTKExtensionsFiltersParallel-pv${PV_VER}.so
+lib/libvtkPVVTKExtensionsFiltersParallel-pv${PV_VER}.so.1
+lib/libvtkPVVTKExtensionsFiltersParallel-pv${PV_VER}.so.${PV_VER}
+lib/libvtkPVVTKExtensionsFiltersParallelCS.a
lib/libvtkPVVTKExtensionsFiltersParallelDIY2-pv${PV_VER}.so
lib/libvtkPVVTKExtensionsFiltersParallelDIY2-pv${PV_VER}.so.1
lib/libvtkPVVTKExtensionsFiltersParallelDIY2-pv${PV_VER}.so.${PV_VER}
@@ -6619,6 +7013,10 @@ lib/libvtkPVVTKExtensionsIOImage-pv${PV_VER}.so
lib/libvtkPVVTKExtensionsIOImage-pv${PV_VER}.so.1
lib/libvtkPVVTKExtensionsIOImage-pv${PV_VER}.so.${PV_VER}
lib/libvtkPVVTKExtensionsIOImageCS.a
+lib/libvtkPVVTKExtensionsIOImport-pv${PV_VER}.so
+lib/libvtkPVVTKExtensionsIOImport-pv${PV_VER}.so.1
+lib/libvtkPVVTKExtensionsIOImport-pv${PV_VER}.so.${PV_VER}
+lib/libvtkPVVTKExtensionsIOImportCS.a
lib/libvtkPVVTKExtensionsIOSPCTH-pv${PV_VER}.so
lib/libvtkPVVTKExtensionsIOSPCTH-pv${PV_VER}.so.1
lib/libvtkPVVTKExtensionsIOSPCTH-pv${PV_VER}.so.${PV_VER}
@@ -6670,6 +7068,10 @@ lib/libvtkRemotingExport-pv${PV_VER}.so
lib/libvtkRemotingExport-pv${PV_VER}.so.1
lib/libvtkRemotingExport-pv${PV_VER}.so.${PV_VER}
lib/libvtkRemotingExportCS.a
+lib/libvtkRemotingImport-pv${PV_VER}.so
+lib/libvtkRemotingImport-pv${PV_VER}.so.1
+lib/libvtkRemotingImport-pv${PV_VER}.so.${PV_VER}
+lib/libvtkRemotingImportCS.a
lib/libvtkRemotingLive-pv${PV_VER}.so
lib/libvtkRemotingLive-pv${PV_VER}.so.1
lib/libvtkRemotingLive-pv${PV_VER}.so.${PV_VER}
@@ -6777,6 +7179,9 @@ lib/libvtkRenderingVtkJSCS.a
lib/libvtkSLACFiltersCS.a
lib/libvtkStreamLinesCS.a
lib/libvtkStreamingParticlesCS.a
+lib/libvtkTestingCore-pv${PV_VER}.so
+lib/libvtkTestingCore-pv${PV_VER}.so.1
+lib/libvtkTestingCore-pv${PV_VER}.so.${PV_VER}
lib/libvtkTestingRendering-pv${PV_VER}.so
lib/libvtkTestingRendering-pv${PV_VER}.so.1
lib/libvtkTestingRendering-pv${PV_VER}.so.${PV_VER}
@@ -6785,6 +7190,9 @@ lib/libvtkThickenLayeredCellsFiltersCS.a
lib/libvtkUtilitiesPythonInitializer-pv${PV_VER}.so
lib/libvtkUtilitiesPythonInitializer-pv${PV_VER}.so.1
lib/libvtkUtilitiesPythonInitializer-pv${PV_VER}.so.${PV_VER}
+lib/libvtkUtilitiesPythonInterpreterPath-pv${PV_VER}.so
+lib/libvtkUtilitiesPythonInterpreterPath-pv${PV_VER}.so.1
+lib/libvtkUtilitiesPythonInterpreterPath-pv${PV_VER}.so.${PV_VER}
lib/libvtkViewsContext2D-pv${PV_VER}.so
lib/libvtkViewsContext2D-pv${PV_VER}.so.1
lib/libvtkViewsContext2D-pv${PV_VER}.so.${PV_VER}
@@ -6801,9 +7209,9 @@ lib/libvtkWebGLExporter-pv${PV_VER}.so
lib/libvtkWebGLExporter-pv${PV_VER}.so.1
lib/libvtkWebGLExporter-pv${PV_VER}.so.${PV_VER}
lib/libvtkWebGLExporterCS.a
-lib/libvtkWrappingPythonCore3.11-pv${PV_VER}.so
-lib/libvtkWrappingPythonCore3.11-pv${PV_VER}.so.1
-lib/libvtkWrappingPythonCore3.11-pv${PV_VER}.so.${PV_VER}
+lib/libvtkWrappingPythonCore3.12-pv${PV_VER}.so
+lib/libvtkWrappingPythonCore3.12-pv${PV_VER}.so.1
+lib/libvtkWrappingPythonCore3.12-pv${PV_VER}.so.${PV_VER}
lib/libvtkWrappingTools-pv${PV_VER}.so
lib/libvtkWrappingTools-pv${PV_VER}.so.1
lib/libvtkWrappingTools-pv${PV_VER}.so.${PV_VER}
@@ -6813,6 +7221,9 @@ lib/libvtkcgns-pv${PV_VER}.so.${PV_VER}
lib/libvtkexodusII-pv${PV_VER}.so
lib/libvtkexodusII-pv${PV_VER}.so.1
lib/libvtkexodusII-pv${PV_VER}.so.${PV_VER}
+lib/libvtkfmt-pv${PV_VER}.so
+lib/libvtkfmt-pv${PV_VER}.so.1
+lib/libvtkfmt-pv${PV_VER}.so.${PV_VER}
lib/libvtkh5part-pv${PV_VER}.so
lib/libvtkh5part-pv${PV_VER}.so.1
lib/libvtkh5part-pv${PV_VER}.so.${PV_VER}
@@ -6826,74 +7237,77 @@ lib/libvtkloguru-pv${PV_VER}.so
lib/libvtkloguru-pv${PV_VER}.so.1
lib/libvtkloguru-pv${PV_VER}.so.${PV_VER}
lib/libvtkm_cont-pv${PV_VER}.so
-lib/libvtkm_cont-pv${PV_VER}.so.2.1
-lib/libvtkm_cont-pv${PV_VER}.so.2.1.0
+lib/libvtkm_cont-pv${PV_VER}.so.2.2
+lib/libvtkm_cont-pv${PV_VER}.so.2.2.0
lib/libvtkm_cont_testing-pv${PV_VER}.so
-lib/libvtkm_cont_testing-pv${PV_VER}.so.2.1
-lib/libvtkm_cont_testing-pv${PV_VER}.so.2.1.0
+lib/libvtkm_cont_testing-pv${PV_VER}.so.2.2
+lib/libvtkm_cont_testing-pv${PV_VER}.so.2.2.0
lib/libvtkm_filter_clean_grid-pv${PV_VER}.so
-lib/libvtkm_filter_clean_grid-pv${PV_VER}.so.2.1
-lib/libvtkm_filter_clean_grid-pv${PV_VER}.so.2.1.0
+lib/libvtkm_filter_clean_grid-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_clean_grid-pv${PV_VER}.so.2.2.0
lib/libvtkm_filter_connected_components-pv${PV_VER}.so
-lib/libvtkm_filter_connected_components-pv${PV_VER}.so.2.1
-lib/libvtkm_filter_connected_components-pv${PV_VER}.so.2.1.0
+lib/libvtkm_filter_connected_components-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_connected_components-pv${PV_VER}.so.2.2.0
lib/libvtkm_filter_contour-pv${PV_VER}.so
-lib/libvtkm_filter_contour-pv${PV_VER}.so.2.1
-lib/libvtkm_filter_contour-pv${PV_VER}.so.2.1.0
+lib/libvtkm_filter_contour-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_contour-pv${PV_VER}.so.2.2.0
lib/libvtkm_filter_core-pv${PV_VER}.so
-lib/libvtkm_filter_core-pv${PV_VER}.so.2.1
-lib/libvtkm_filter_core-pv${PV_VER}.so.2.1.0
+lib/libvtkm_filter_core-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_core-pv${PV_VER}.so.2.2.0
lib/libvtkm_filter_density_estimate-pv${PV_VER}.so
-lib/libvtkm_filter_density_estimate-pv${PV_VER}.so.2.1
-lib/libvtkm_filter_density_estimate-pv${PV_VER}.so.2.1.0
+lib/libvtkm_filter_density_estimate-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_density_estimate-pv${PV_VER}.so.2.2.0
lib/libvtkm_filter_entity_extraction-pv${PV_VER}.so
-lib/libvtkm_filter_entity_extraction-pv${PV_VER}.so.2.1
-lib/libvtkm_filter_entity_extraction-pv${PV_VER}.so.2.1.0
+lib/libvtkm_filter_entity_extraction-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_entity_extraction-pv${PV_VER}.so.2.2.0
lib/libvtkm_filter_field_conversion-pv${PV_VER}.so
-lib/libvtkm_filter_field_conversion-pv${PV_VER}.so.2.1
-lib/libvtkm_filter_field_conversion-pv${PV_VER}.so.2.1.0
+lib/libvtkm_filter_field_conversion-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_field_conversion-pv${PV_VER}.so.2.2.0
lib/libvtkm_filter_field_transform-pv${PV_VER}.so
-lib/libvtkm_filter_field_transform-pv${PV_VER}.so.2.1
-lib/libvtkm_filter_field_transform-pv${PV_VER}.so.2.1.0
+lib/libvtkm_filter_field_transform-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_field_transform-pv${PV_VER}.so.2.2.0
lib/libvtkm_filter_flow-pv${PV_VER}.so
-lib/libvtkm_filter_flow-pv${PV_VER}.so.2.1
-lib/libvtkm_filter_flow-pv${PV_VER}.so.2.1.0
+lib/libvtkm_filter_flow-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_flow-pv${PV_VER}.so.2.2.0
lib/libvtkm_filter_geometry_refinement-pv${PV_VER}.so
-lib/libvtkm_filter_geometry_refinement-pv${PV_VER}.so.2.1
-lib/libvtkm_filter_geometry_refinement-pv${PV_VER}.so.2.1.0
+lib/libvtkm_filter_geometry_refinement-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_geometry_refinement-pv${PV_VER}.so.2.2.0
lib/libvtkm_filter_image_processing-pv${PV_VER}.so
-lib/libvtkm_filter_image_processing-pv${PV_VER}.so.2.1
-lib/libvtkm_filter_image_processing-pv${PV_VER}.so.2.1.0
+lib/libvtkm_filter_image_processing-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_image_processing-pv${PV_VER}.so.2.2.0
lib/libvtkm_filter_mesh_info-pv${PV_VER}.so
-lib/libvtkm_filter_mesh_info-pv${PV_VER}.so.2.1
-lib/libvtkm_filter_mesh_info-pv${PV_VER}.so.2.1.0
+lib/libvtkm_filter_mesh_info-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_mesh_info-pv${PV_VER}.so.2.2.0
lib/libvtkm_filter_multi_block-pv${PV_VER}.so
-lib/libvtkm_filter_multi_block-pv${PV_VER}.so.2.1
-lib/libvtkm_filter_multi_block-pv${PV_VER}.so.2.1.0
+lib/libvtkm_filter_multi_block-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_multi_block-pv${PV_VER}.so.2.2.0
lib/libvtkm_filter_resampling-pv${PV_VER}.so
-lib/libvtkm_filter_resampling-pv${PV_VER}.so.2.1
-lib/libvtkm_filter_resampling-pv${PV_VER}.so.2.1.0
+lib/libvtkm_filter_resampling-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_resampling-pv${PV_VER}.so.2.2.0
lib/libvtkm_filter_scalar_topology-pv${PV_VER}.so
-lib/libvtkm_filter_scalar_topology-pv${PV_VER}.so.2.1
-lib/libvtkm_filter_scalar_topology-pv${PV_VER}.so.2.1.0
+lib/libvtkm_filter_scalar_topology-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_scalar_topology-pv${PV_VER}.so.2.2.0
+lib/libvtkm_filter_uncertainty-pv${PV_VER}.so
+lib/libvtkm_filter_uncertainty-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_uncertainty-pv${PV_VER}.so.2.2.0
lib/libvtkm_filter_vector_analysis-pv${PV_VER}.so
-lib/libvtkm_filter_vector_analysis-pv${PV_VER}.so.2.1
-lib/libvtkm_filter_vector_analysis-pv${PV_VER}.so.2.1.0
+lib/libvtkm_filter_vector_analysis-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_vector_analysis-pv${PV_VER}.so.2.2.0
lib/libvtkm_filter_zfp-pv${PV_VER}.so
-lib/libvtkm_filter_zfp-pv${PV_VER}.so.2.1
-lib/libvtkm_filter_zfp-pv${PV_VER}.so.2.1.0
+lib/libvtkm_filter_zfp-pv${PV_VER}.so.2.2
+lib/libvtkm_filter_zfp-pv${PV_VER}.so.2.2.0
lib/libvtkm_io-pv${PV_VER}.so
-lib/libvtkm_io-pv${PV_VER}.so.2.1
-lib/libvtkm_io-pv${PV_VER}.so.2.1.0
+lib/libvtkm_io-pv${PV_VER}.so.2.2
+lib/libvtkm_io-pv${PV_VER}.so.2.2.0
lib/libvtkm_source-pv${PV_VER}.so
-lib/libvtkm_source-pv${PV_VER}.so.2.1
-lib/libvtkm_source-pv${PV_VER}.so.2.1.0
+lib/libvtkm_source-pv${PV_VER}.so.2.2
+lib/libvtkm_source-pv${PV_VER}.so.2.2.0
lib/libvtkm_worklet-pv${PV_VER}.so
-lib/libvtkm_worklet-pv${PV_VER}.so.2.1
-lib/libvtkm_worklet-pv${PV_VER}.so.2.1.0
+lib/libvtkm_worklet-pv${PV_VER}.so.2.2
+lib/libvtkm_worklet-pv${PV_VER}.so.2.2.0
lib/libvtkmdiympi_nompi.so
-lib/libvtkmdiympi_nompi.so.2.1
-lib/libvtkmdiympi_nompi.so.2.1.0
+lib/libvtkmdiympi_nompi.so.2.2
+lib/libvtkmdiympi_nompi.so.2.2.0
lib/libvtkmetaio-pv${PV_VER}.so
lib/libvtkmetaio-pv${PV_VER}.so.1
lib/libvtkmetaio-pv${PV_VER}.so.${PV_VER}
@@ -7013,7 +7427,6 @@ lib/paraview-${PV_VER}/plugins/StreamLinesRepresentation/vtk/hierarchy/StreamLin
lib/paraview-${PV_VER}/plugins/StreamingParticles/StreamingParticles.so
lib/paraview-${PV_VER}/plugins/StreamingParticles/libvtkStreamingParticles.so
lib/paraview-${PV_VER}/plugins/StreamingParticles/vtk/hierarchy/StreamingParticles/vtkStreamingParticles-hierarchy.txt
-lib/paraview-${PV_VER}/plugins/SurfaceLIC/SurfaceLIC.so
lib/paraview-${PV_VER}/plugins/ThickenLayeredCells/ThickenLayeredCells.so
lib/paraview-${PV_VER}/plugins/ThickenLayeredCells/libvtkThickenLayeredCellsFilters.so
lib/paraview-${PV_VER}/plugins/ThickenLayeredCells/vtk/hierarchy/ThickenLayeredCells/vtkThickenLayeredCellsFilters-hierarchy.txt
@@ -7023,19 +7436,14 @@ ${PYSITELIB}/cp_pythonadaptorscript.py
${PYSITELIB}/fv_coprocess.py
${PYSITELIB}/paraview/__init__.py
${PYSITELIB}/paraview/_backwardscompatibilityhelper.py
-${PYSITELIB}/paraview/_colorMaps.py
${PYSITELIB}/paraview/algorithms/__init__.py
${PYSITELIB}/paraview/algorithms/openpmd.py
${PYSITELIB}/paraview/algorithms/savgreader.py
${PYSITELIB}/paraview/apps/__init__.py
${PYSITELIB}/paraview/apps/__main__.py
${PYSITELIB}/paraview/apps/_internals.py
-${PYSITELIB}/paraview/apps/divvy.py
-${PYSITELIB}/paraview/apps/flow.py
${PYSITELIB}/paraview/apps/glance.py
-${PYSITELIB}/paraview/apps/lite.py
${PYSITELIB}/paraview/apps/trame.py
-${PYSITELIB}/paraview/apps/visualizer.py
${PYSITELIB}/paraview/benchmark/__init__.py
${PYSITELIB}/paraview/benchmark/basic.py
${PYSITELIB}/paraview/benchmark/logbase.py
@@ -7071,9 +7479,7 @@ ${PYSITELIB}/paraview/incubator/__init__.py
${PYSITELIB}/paraview/incubator/vtkPVIncubatorCore.so
${PYSITELIB}/paraview/inspect.py
${PYSITELIB}/paraview/live.py
-${PYSITELIB}/paraview/lookuptable.py
${PYSITELIB}/paraview/modules/__init__.py
-${PYSITELIB}/paraview/modules/vtkPVAdaptorsPagosa.so
${PYSITELIB}/paraview/modules/vtkPVCatalyst.so
${PYSITELIB}/paraview/modules/vtkPVClientWeb.so
${PYSITELIB}/paraview/modules/vtkPVInSitu.so
@@ -7082,8 +7488,10 @@ ${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsAMR.so
${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsCore.so
${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsExtraction.so
${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsExtractionPython.so
+${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsFiltersFlowPaths.so
${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsFiltersGeneral.so
${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsFiltersMaterialInterface.so
+${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsFiltersParallel.so
${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsFiltersParallelDIY2.so
${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsFiltersPython.so
${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsFiltersRendering.so
@@ -7095,6 +7503,7 @@ ${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsIOEnSight.so
${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsIOExodus.so
${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsIOGeneral.so
${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsIOImage.so
+${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsIOImport.so
${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsIOSPCTH.so
${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsInteractionStyle.so
${PYSITELIB}/paraview/modules/vtkPVVTKExtensionsMisc.so
@@ -7105,6 +7514,7 @@ ${PYSITELIB}/paraview/modules/vtkRemotingApplication.so
${PYSITELIB}/paraview/modules/vtkRemotingClientServerStream.so
${PYSITELIB}/paraview/modules/vtkRemotingCore.so
${PYSITELIB}/paraview/modules/vtkRemotingExport.so
+${PYSITELIB}/paraview/modules/vtkRemotingImport.so
${PYSITELIB}/paraview/modules/vtkRemotingLive.so
${PYSITELIB}/paraview/modules/vtkRemotingMisc.so
${PYSITELIB}/paraview/modules/vtkRemotingServerManager.so
@@ -7127,6 +7537,7 @@ ${PYSITELIB}/paraview/tests/__init__.py
${PYSITELIB}/paraview/tests/__main__.py
${PYSITELIB}/paraview/tests/basic_rendering.py
${PYSITELIB}/paraview/tests/internals.py
+${PYSITELIB}/paraview/tests/proxy_deprecation.py
${PYSITELIB}/paraview/tests/validate_extracts.py
${PYSITELIB}/paraview/tests/verify_eyedomelighting.py
${PYSITELIB}/paraview/tpl/__init__.py
@@ -7246,6 +7657,8 @@ ${PYSITELIB}/vtkmodules/tk/vtkTkRenderWidget.py
${PYSITELIB}/vtkmodules/tk/vtkTkRenderWindowInteractor.py
${PYSITELIB}/vtkmodules/util/__init__.py
${PYSITELIB}/vtkmodules/util/colors.py
+${PYSITELIB}/vtkmodules/util/data_model.py
+${PYSITELIB}/vtkmodules/util/execution_model.py
${PYSITELIB}/vtkmodules/util/keys.py
${PYSITELIB}/vtkmodules/util/misc.py
${PYSITELIB}/vtkmodules/util/numpy_support.py
@@ -7291,11 +7704,14 @@ ${PYSITELIB}/vtkmodules/vtkFiltersParallelVerdict.so
${PYSITELIB}/vtkmodules/vtkFiltersPoints.so
${PYSITELIB}/vtkmodules/vtkFiltersProgrammable.so
${PYSITELIB}/vtkmodules/vtkFiltersPython.so
+${PYSITELIB}/vtkmodules/vtkFiltersReduction.so
${PYSITELIB}/vtkmodules/vtkFiltersSources.so
${PYSITELIB}/vtkmodules/vtkFiltersStatistics.so
+${PYSITELIB}/vtkmodules/vtkFiltersTemporal.so
${PYSITELIB}/vtkmodules/vtkFiltersTensor.so
${PYSITELIB}/vtkmodules/vtkFiltersTexture.so
${PYSITELIB}/vtkmodules/vtkFiltersVerdict.so
+${PYSITELIB}/vtkmodules/vtkGeovisCore.so
${PYSITELIB}/vtkmodules/vtkIOAMR.so
${PYSITELIB}/vtkmodules/vtkIOAsynchronous.so
${PYSITELIB}/vtkmodules/vtkIOCGNSReader.so
@@ -7304,6 +7720,7 @@ ${PYSITELIB}/vtkmodules/vtkIOCellGrid.so
${PYSITELIB}/vtkmodules/vtkIOChemistry.so
${PYSITELIB}/vtkmodules/vtkIOCityGML.so
${PYSITELIB}/vtkmodules/vtkIOCore.so
+${PYSITELIB}/vtkmodules/vtkIOERF.so
${PYSITELIB}/vtkmodules/vtkIOEnSight.so
${PYSITELIB}/vtkmodules/vtkIOExodus.so
${PYSITELIB}/vtkmodules/vtkIOExport.so
@@ -7423,11 +7840,14 @@ lib/vtk/hierarchy/ParaView/vtkFiltersParallelVerdict-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkFiltersPoints-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkFiltersProgrammable-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkFiltersPython-hierarchy.txt
+lib/vtk/hierarchy/ParaView/vtkFiltersReduction-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkFiltersSources-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkFiltersStatistics-hierarchy.txt
+lib/vtk/hierarchy/ParaView/vtkFiltersTemporal-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkFiltersTensor-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkFiltersTexture-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkFiltersVerdict-hierarchy.txt
+lib/vtk/hierarchy/ParaView/vtkGeovisCore-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkIOAMR-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkIOAsynchronous-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkIOCGNSReader-hierarchy.txt
@@ -7436,6 +7856,7 @@ lib/vtk/hierarchy/ParaView/vtkIOCellGrid-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkIOChemistry-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkIOCityGML-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkIOCore-hierarchy.txt
+lib/vtk/hierarchy/ParaView/vtkIOERF-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkIOEnSight-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkIOExodus-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkIOExport-hierarchy.txt
@@ -7490,8 +7911,10 @@ lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsAMR-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsCore-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsExtraction-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsExtractionPython-hierarchy.txt
+lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsFiltersFlowPaths-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsFiltersGeneral-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsFiltersMaterialInterface-hierarchy.txt
+lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsFiltersParallel-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsFiltersParallelDIY2-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsFiltersPython-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsFiltersRendering-hierarchy.txt
@@ -7503,6 +7926,7 @@ lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsIOEnSight-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsIOExodus-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsIOGeneral-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsIOImage-hierarchy.txt
+lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsIOImport-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsIOSPCTH-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsInteractionStyle-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkPVVTKExtensionsMisc-hierarchy.txt
@@ -7514,6 +7938,7 @@ lib/vtk/hierarchy/ParaView/vtkRemotingApplication-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkRemotingClientServerStream-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkRemotingCore-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkRemotingExport-hierarchy.txt
+lib/vtk/hierarchy/ParaView/vtkRemotingImport-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkRemotingLive-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkRemotingMisc-hierarchy.txt
lib/vtk/hierarchy/ParaView/vtkRemotingServerManager-hierarchy.txt
@@ -7577,6 +8002,7 @@ share/licenses/ParaView/vtkGUISupportQt/LICENSE
share/licenses/ParaView/vtkGeodesicMeasurementFilters/Copyright.txt
share/licenses/ParaView/vtkGeodesicMeasurementFilters/LICENSE
share/licenses/ParaView/vtkGeodesicMeasurementFilters/License.txt
+share/licenses/ParaView/vtkGeovisCore/LICENSE
share/licenses/ParaView/vtkIOCore/LICENSE
share/licenses/ParaView/vtkIOExport/LICENSE
share/licenses/ParaView/vtkIOInfovis/LICENSE
@@ -7613,12 +8039,14 @@ share/licenses/ParaView/vtkdiy2/LICENSE.txt
share/licenses/ParaView/vtkexodusII/COPYRIGHT
share/licenses/ParaView/vtkexprtk/License.txt
share/licenses/ParaView/vtkfast_float/LICENSE-MIT
+share/licenses/ParaView/vtkfmt/LICENSE.rst
share/licenses/ParaView/vtkh5part/COPYING
share/licenses/ParaView/vtkioss/COPYRIGHT
share/licenses/ParaView/vtkkissfft/COPYING
share/licenses/ParaView/vtkkwiml/Copyright.txt
share/licenses/ParaView/vtkloguru/LICENSE
share/licenses/ParaView/vtkmetaio/License.txt
+share/licenses/ParaView/vtkpegtl/LICENSE
share/licenses/ParaView/vtkqttesting/Copyright.txt
share/licenses/ParaView/vtksys/Copyright.txt
share/licenses/ParaView/vtktoken/license.md
diff --git a/paraview/distinfo b/paraview/distinfo
index d05d7fd41b..f47b309484 100644
--- a/paraview/distinfo
+++ b/paraview/distinfo
@@ -1,9 +1,9 @@
$NetBSD$
-BLAKE2s (ParaView-v5.12.1.tar.gz) = e61cf9b32a265e0bc274fdb0186e924ba94b2895e0f69333b4107651998e8ba7
-SHA512 (ParaView-v5.12.1.tar.gz) = 730b7a3bef4b70bfbd81c63d96a9cbe85906fbbac52706989d3996c11a2e2fcfefe550c2ca439e009bacf93a9a0e8bfff16a34729f3874f7ac610bc4d38771ab
-Size (ParaView-v5.12.1.tar.gz) = 156847753 bytes
+BLAKE2s (ParaView-v5.13.2.tar.gz) = 408c626cbe3750be8f9b44a77b7cd34bc87028b43014b1601554ee00985a3b65
+SHA512 (ParaView-v5.13.2.tar.gz) = 2425480245d6882de3f039ffe293ec6ffc9f185c0a4e4a245557d4625cb663399c057cd1956caa0f5522b54ce69b05ec678c98315dbcd4e8d6d3a29e19bed5c8
+Size (ParaView-v5.13.2.tar.gz) = 175859177 bytes
SHA1 (patch-Qt_Core_pqServerConfiguration.cxx) = 13650d27176d82f812dc92e441f42de02b070462
-SHA1 (patch-VTK_ThirdParty_ioss_vtkioss_Ioss__FileInfo.C) = 497085f40d9f181d953e5c753a93b15af91f5ff8
+SHA1 (patch-VTK_ThirdParty_ioss_vtkioss_Ioss__FileInfo.C) = 529d4056ead53c17ce7b0e71c5d5d6dd12cfc0b1
SHA1 (patch-VTK_ThirdParty_loguru_vtkloguru_loguru.cpp) = 2827711be67aa8210fdb169dd5b6c49a7ed97174
SHA1 (patch-VTK_ThirdParty_vtkm_vtkvtkm_vtk-m_vtkm_thirdparty_loguru_vtkmloguru_loguru.cpp) = 71191591c70594ed3c8e9e01f221d385675abb5e
diff --git a/paraview/patches/patch-VTK_ThirdParty_ioss_vtkioss_Ioss__FileInfo.C b/paraview/patches/patch-VTK_ThirdParty_ioss_vtkioss_Ioss__FileInfo.C
index 572d5b5f8c..b939e617b3 100644
--- a/paraview/patches/patch-VTK_ThirdParty_ioss_vtkioss_Ioss__FileInfo.C
+++ b/paraview/patches/patch-VTK_ThirdParty_ioss_vtkioss_Ioss__FileInfo.C
@@ -2,14 +2,14 @@ $NetBSD$
NFS temporarily disabled for NetBSD
---- VTK/ThirdParty/ioss/vtkioss/Ioss_FileInfo.C.orig 2024-05-17 19:18:15.000000000 +0000
+--- VTK/ThirdParty/ioss/vtkioss/Ioss_FileInfo.C.orig 2024-09-27 01:54:08.000000000 +0000
+++ VTK/ThirdParty/ioss/vtkioss/Ioss_FileInfo.C
-@@ -174,7 +174,7 @@ namespace Ioss {
+@@ -172,7 +172,7 @@ namespace Ioss {
//: Return TRUE if file is on an NFS filesystem...
bool FileInfo::is_nfs() const
{
-#if !defined(__IOSS_WINDOWS__)
+#if !defined(__IOSS_WINDOWS__) && !defined(__NetBSD__)
- #define NFS_FS 0x6969 /* statfs defines that 0x6969 is NFS filesystem */
auto tmp_path = pathname();
if (tmp_path.empty()) {
+ char *current_cwd = getcwd(nullptr, 0);
Home |
Main Index |
Thread Index |
Old Index