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
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Lucas Gandel
VTK
Commits
4ddf1f83
Commit
4ddf1f83
authored
10 months ago
by
Jaswant Panchumarti (Kitware)
Browse files
Options
Downloads
Patches
Plain Diff
Exclude pointer parameters in X opengl render window from serialization
- Display* and Window types are not supported
parent
5041d73b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Rendering/OpenGL2/vtkXOpenGLRenderWindow.h
+9
-0
9 additions, 0 deletions
Rendering/OpenGL2/vtkXOpenGLRenderWindow.h
with
9 additions
and
0 deletions
Rendering/OpenGL2/vtkXOpenGLRenderWindow.h
+
9
−
0
View file @
4ddf1f83
...
...
@@ -181,6 +181,7 @@ public:
/**
* Get this RenderWindow's X display id.
*/
VTK_MARSHALEXCLUDE
(
VTK_MARSHAL_EXCLUDE_REASON_NOT_SUPPORTED
)
Display
*
GetDisplayId
();
///@{
...
...
@@ -188,33 +189,41 @@ public:
* Set the X display id for this RenderWindow to use to a pre-existing
* X display id.
*/
VTK_MARSHALEXCLUDE
(
VTK_MARSHAL_EXCLUDE_REASON_NOT_SUPPORTED
)
void
SetDisplayId
(
Display
*
);
VTK_MARSHALEXCLUDE
(
VTK_MARSHAL_EXCLUDE_REASON_NOT_SUPPORTED
)
void
SetDisplayId
(
void
*
)
override
;
///@}
/**
* Get this RenderWindow's parent X window id.
*/
VTK_MARSHALEXCLUDE
(
VTK_MARSHAL_EXCLUDE_REASON_NOT_SUPPORTED
)
Window
GetParentId
();
///@{
/**
* Sets the parent of the window that WILL BE created.
*/
VTK_MARSHALEXCLUDE
(
VTK_MARSHAL_EXCLUDE_REASON_NOT_SUPPORTED
)
void
SetParentId
(
Window
);
VTK_MARSHALEXCLUDE
(
VTK_MARSHAL_EXCLUDE_REASON_NOT_SUPPORTED
)
void
SetParentId
(
void
*
)
override
;
///@}
/**
* Get this RenderWindow's X window id.
*/
VTK_MARSHALEXCLUDE
(
VTK_MARSHAL_EXCLUDE_REASON_NOT_SUPPORTED
)
Window
GetWindowId
();
///@{
/**
* Set this RenderWindow's X window id to a pre-existing window.
*/
VTK_MARSHALEXCLUDE
(
VTK_MARSHAL_EXCLUDE_REASON_NOT_SUPPORTED
)
void
SetWindowId
(
Window
);
VTK_MARSHALEXCLUDE
(
VTK_MARSHAL_EXCLUDE_REASON_NOT_SUPPORTED
)
void
SetWindowId
(
void
*
)
override
;
///@}
...
...
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