Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VTK
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Scott Wittenburg
VTK
Commits
ae8691fa
Commit
ae8691fa
authored
Dec 14, 2017
by
Ben Boeckel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rendering/OpenGL2: use VTK_SIZEHINT
parent
5401596b
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
37 deletions
+16
-37
Rendering/OpenGL2/vtkCocoaRenderWindow.h
Rendering/OpenGL2/vtkCocoaRenderWindow.h
+3
-3
Rendering/OpenGL2/vtkEGLRenderWindow.h
Rendering/OpenGL2/vtkEGLRenderWindow.h
+2
-2
Rendering/OpenGL2/vtkGenericOpenGLRenderWindow.h
Rendering/OpenGL2/vtkGenericOpenGLRenderWindow.h
+1
-1
Rendering/OpenGL2/vtkIOSRenderWindow.h
Rendering/OpenGL2/vtkIOSRenderWindow.h
+3
-3
Rendering/OpenGL2/vtkOSOpenGLRenderWindow.h
Rendering/OpenGL2/vtkOSOpenGLRenderWindow.h
+2
-2
Rendering/OpenGL2/vtkWin32OpenGLRenderWindow.h
Rendering/OpenGL2/vtkWin32OpenGLRenderWindow.h
+3
-3
Rendering/OpenGL2/vtkXOpenGLRenderWindow.h
Rendering/OpenGL2/vtkXOpenGLRenderWindow.h
+2
-2
Wrapping/Tools/hints
Wrapping/Tools/hints
+0
-21
No files found.
Rendering/OpenGL2/vtkCocoaRenderWindow.h
View file @
ae8691fa
...
...
@@ -108,7 +108,7 @@ public:
/**
* Get the current size of the window in pixels.
*/
int
*
GetSize
()
override
;
int
*
GetSize
()
VTK_SIZEHINT
(
2
)
override
;
//@{
/**
...
...
@@ -121,12 +121,12 @@ public:
/**
* Get the current size of the screen in pixels.
*/
int
*
GetScreenSize
()
override
;
int
*
GetScreenSize
()
VTK_SIZEHINT
(
2
)
override
;
/**
* Get the position in screen coordinates of the window.
*/
int
*
GetPosition
()
override
;
int
*
GetPosition
()
VTK_SIZEHINT
(
2
)
override
;
/**
* Set the name of the window. This appears at the top of the window
...
...
Rendering/OpenGL2/vtkEGLRenderWindow.h
View file @
ae8691fa
...
...
@@ -115,12 +115,12 @@ public:
/**
* Get the current size of the screen in pixels.
*/
virtual
int
*
GetScreenSize
();
virtual
int
*
GetScreenSize
()
VTK_SIZEHINT
(
2
)
;
/**
* Get the position in screen coordinates (pixels) of the window.
*/
virtual
int
*
GetPosition
();
virtual
int
*
GetPosition
()
VTK_SIZEHINT
(
2
)
;
//@{
/**
...
...
Rendering/OpenGL2/vtkGenericOpenGLRenderWindow.h
View file @
ae8691fa
...
...
@@ -96,7 +96,7 @@ public:
void
*
GetGenericDrawable
()
override
;
void
SetWindowInfo
(
char
*
)
override
;
void
SetParentInfo
(
char
*
)
override
;
int
*
GetScreenSize
()
override
;
int
*
GetScreenSize
()
VTK_SIZEHINT
(
2
)
override
;
void
Start
()
override
;
void
HideCursor
()
override
;
void
ShowCursor
()
override
;
...
...
Rendering/OpenGL2/vtkIOSRenderWindow.h
View file @
ae8691fa
...
...
@@ -107,7 +107,7 @@ public:
/**
* Get the current size of the window in pixels.
*/
int
*
GetSize
()
override
;
int
*
GetSize
()
VTK_SIZEHINT
(
2
)
override
;
//@{
/**
...
...
@@ -120,12 +120,12 @@ public:
/**
* Get the current size of the screen in pixels.
*/
int
*
GetScreenSize
()
override
;
int
*
GetScreenSize
()
VTK_SIZEHINT
(
2
)
override
;
/**
* Get the position in screen coordinates of the window.
*/
int
*
GetPosition
()
override
;
int
*
GetPosition
()
VTK_SIZEHINT
(
2
)
override
;
/**
* Set the name of the window. This appears at the top of the window
...
...
Rendering/OpenGL2/vtkOSOpenGLRenderWindow.h
View file @
ae8691fa
...
...
@@ -88,12 +88,12 @@ public:
/**
* Get the current size of the screen in pixels.
*/
virtual
int
*
GetScreenSize
();
virtual
int
*
GetScreenSize
()
VTK_SIZEHINT
(
2
)
;
/**
* Get the position in screen coordinates (pixels) of the window.
*/
virtual
int
*
GetPosition
();
virtual
int
*
GetPosition
()
VTK_SIZEHINT
(
2
)
;
//@{
/**
...
...
Rendering/OpenGL2/vtkWin32OpenGLRenderWindow.h
View file @
ae8691fa
...
...
@@ -95,7 +95,7 @@ public:
/**
* Get the current size of the window in pixels.
*/
int
*
GetSize
()
override
;
int
*
GetSize
()
VTK_SIZEHINT
(
2
)
override
;
//@{
/**
...
...
@@ -108,12 +108,12 @@ public:
/**
* Get the current size of the screen in pixels.
*/
int
*
GetScreenSize
()
override
;
int
*
GetScreenSize
()
VTK_SIZEHINT
(
2
)
override
;
/**
* Get the position in screen coordinates of the window.
*/
int
*
GetPosition
()
override
;
int
*
GetPosition
()
VTK_SIZEHINT
(
2
)
override
;
/**
* Set the name of the window. This appears at the top of the window
...
...
Rendering/OpenGL2/vtkXOpenGLRenderWindow.h
View file @
ae8691fa
...
...
@@ -160,12 +160,12 @@ public:
/**
* Get the current size of the screen in pixels.
*/
int
*
GetScreenSize
()
override
;
int
*
GetScreenSize
()
VTK_SIZEHINT
(
2
)
override
;
/**
* Get the position in screen coordinates (pixels) of the window.
*/
int
*
GetPosition
()
override
;
int
*
GetPosition
()
VTK_SIZEHINT
(
2
)
override
;
/**
* Get this RenderWindow's X display id.
...
...
Wrapping/Tools/hints
View file @
ae8691fa
vtkCocoaRenderWindow GetPosition 304 2
vtkCocoaRenderWindow GetScreenSize 304 2
vtkCocoaRenderWindow GetSize 304 2
vtkDataObject GetUpdateExtent 304 6
vtkDataObject GetWholeExtent 304 6
vtkDICOMImageReader GetImageOrientationPatient 301 6
vtkDICOMImageReader GetImagePositionPatient 301 3
vtkDICOMImageReader GetPixelSpacing 307 3
vtkDirectionEncoder GetDecodedGradient 301 3
vtkEGLRenderWindow GetPosition 304 2
vtkEGLRenderWindow GetScreenSize 304 2
vtkEGLRenderWindow GetSize 304 2
vtkExodusIIReader GetModeShapesRange 304 2
vtkExtractUnstructuredGrid GetExtent 307 6
vtkFunctionParser GetVectorResult 307 3
vtkFunctionParser GetVectorVariableValue 307 3
vtkGenericOpenGLRenderWindow GetPosition 304 2
vtkGenericOpenGLRenderWindow GetScreenSize 304 2
vtkGenericOpenGLRenderWindow GetSize 304 2
vtkGeometryFilter GetExtent 307 6
vtkGridSynchronizedTemplates3D GetExecuteExtent 304 6
vtkHyperStreamline GetStartPosition 307 3
...
...
@@ -47,9 +38,6 @@ vtkImageSpatialFilter GetKernelSize 304 3
vtkImageVectorConvolve GetKernel 301 3
vtkImageViewer GetPosition 304 2
vtkImageViewer GetSize 304 2
vtkIOSRenderWindow GetPosition 304 2
vtkIOSRenderWindow GetScreenSize 304 2
vtkIOSRenderWindow GetSize 304 2
vtkLinearTransform TransformDoubleNormal 307 3
vtkLinearTransform TransformDoubleVector 307 3
vtkLinearTransform TransformFloatNormal 301 3
...
...
@@ -62,9 +50,6 @@ vtkMatrix4x4 MultiplyPoint 301 4
vtkMedicalImageProperties GetNthWindowLevelPreset 307 2
vtkMedicalImageProperties GetWindowLevelPreset 307 2
vtkMINCImageReader GetDataRange 307 2
vtkOSOpenGLRenderWindow GetPosition 304 2
vtkOSOpenGLRenderWindow GetScreenSize 304 2
vtkOSOpenGLRenderWindow GetSize 304 2
vtkPainterPolyDataMapper GetBounds 307 6
vtkPolyData GetUpdateExtent 304 6
vtkPolygon ConvertEllipseToImplicit 307 5
...
...
@@ -92,11 +77,5 @@ vtkViewRays GetParallelIncrements 301 2
vtkViewRays GetParallelStartPosition 301 3
vtkVolumeMapper GetBounds 307 6
vtkWarpLens GetCenter 307 2
vtkWin32OpenGLRenderWindow GetPosition 304 2
vtkWin32OpenGLRenderWindow GetScreenSize 304 2
vtkWin32OpenGLRenderWindow GetSize 304 2
vtkWindowLevelLookupTable GetMaximumTableValue 307 4
vtkWindowLevelLookupTable GetMinimumTableValue 307 4
vtkXOpenGLRenderWindow GetPosition 304 2
vtkXOpenGLRenderWindow GetScreenSize 304 2
vtkXOpenGLRenderWindow GetSize 304 2
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment