Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michael Migliore
VTK
Commits
0121f213
Commit
0121f213
authored
2 years ago
by
Ben Boeckel
Browse files
Options
Downloads
Patches
Plain Diff
Rendering/Parallel: export and install `vtkCompositeZPassFS`
Used within ParaView.
parent
57c5fcb4
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Documentation/release/dev/shader-symbol-exports.md
+1
-0
1 addition, 0 deletions
Documentation/release/dev/shader-symbol-exports.md
Rendering/Parallel/CMakeLists.txt
+13
-2
13 additions, 2 deletions
Rendering/Parallel/CMakeLists.txt
with
14 additions
and
2 deletions
Documentation/release/dev/shader-symbol-exports.md
+
1
−
0
View file @
0121f213
...
...
@@ -5,3 +5,4 @@ only those that are available through installed headers are available. These
include:
-
`vtkTextureObjectVS`
from
`VTK::RenderingOpenGL2`
-
`vtkCompositeZPassFS`
from
`VTK::RenderingParallel`
This diff is collapsed.
Click to expand it.
Rendering/Parallel/CMakeLists.txt
+
13
−
2
View file @
0121f213
...
...
@@ -15,12 +15,22 @@ set(classes
vtkTreeCompositer
)
set
(
shader_files
vtkCompositeZPassShader_fs.glsl
vtkCompositeZPassShader_fs.glsl
)
set
(
public_shader_files
vtkCompositeZPassFS.glsl
)
set
(
sources
)
set
(
private_headers
)
foreach
(
shader_file IN LISTS shader_files
)
vtk_encode_string
(
INPUT
"
${
shader_file
}
"
HEADER_OUTPUT header
SOURCE_OUTPUT source
)
list
(
APPEND sources
${
source
}
)
list
(
APPEND private_headers
${
header
}
)
endforeach
()
set
(
headers
)
foreach
(
shader_file IN LISTS public_shader_files
)
vtk_encode_string
(
INPUT
"
${
shader_file
}
"
EXPORT_SYMBOL
"VTKRENDERINGPARALLEL_EXPORT"
...
...
@@ -28,12 +38,13 @@ foreach (shader_file IN LISTS shader_files)
HEADER_OUTPUT header
SOURCE_OUTPUT source
)
list
(
APPEND sources
${
source
}
)
list
(
APPEND
private_
headers
${
header
}
)
list
(
APPEND headers
${
header
}
)
endforeach
()
vtk_module_add_module
(
VTK::RenderingParallel
CLASSES
${
classes
}
SOURCES
${
sources
}
HEADERS
${
headers
}
PRIVATE_HEADERS
${
private_headers
}
)
vtk_module_definitions
(
VTK::RenderingParallel
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment