Specify the size of the rendering window.
| 416 | |
| 417 | // Specify the size of the rendering window. |
| 418 | void vtkOSOpenGLRenderWindow::SetSize(int width, int height) |
| 419 | { |
| 420 | if ((this->Size[0] != width) || (this->Size[1] != height)) |
| 421 | { |
| 422 | this->Superclass::SetSize(width, height); |
| 423 | this->ResizeOffScreenWindow(width, height); |
| 424 | this->Modified(); |
| 425 | } |
| 426 | } |
| 427 | |
| 428 | void vtkOSOpenGLRenderWindow::PrintSelf(ostream& os, vtkIndent indent) |
| 429 | { |
nothing calls this directly
no test coverage detected