MCPcopy Create free account
hub / github.com/Kitware/VTK / GetWindowSize

Method GetWindowSize

Rendering/Core/vtkRenderState.cxx:67–77  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Description: Get the window size of the state.

Source from the content-addressed store, hash-verified

65// Description:
66// Get the window size of the state.
67void vtkRenderState::GetWindowSize(int size[2]) const
68{
69 if (this->FrameBuffer == nullptr)
70 {
71 this->Renderer->GetTiledSize(&size[0], &size[1]);
72 }
73 else
74 {
75 this->FrameBuffer->GetLastSize(size);
76 }
77}
78
79//------------------------------------------------------------------------------
80// Description:

Callers 11

InitializeMethod · 0.80
RenderMethod · 0.80
RenderMethod · 0.80
RenderMethod · 0.80
RenderMethod · 0.80
RenderMethod · 0.80
RenderMethod · 0.80
RenderMethod · 0.80
RenderMethod · 0.80
RenderMethod · 0.80
RenderMethod · 0.80

Calls 1

GetTiledSizeMethod · 0.80

Tested by

no test coverage detected