Resize the window.
| 1017 | |
| 1018 | // Resize the window. |
| 1019 | void vtkXOpenGLRenderWindow::WindowRemap() |
| 1020 | { |
| 1021 | // shut everything down |
| 1022 | this->Finalize(); |
| 1023 | |
| 1024 | // set the default windowid |
| 1025 | this->WindowId = this->NextWindowId; |
| 1026 | this->NextWindowId = static_cast<Window>(0); |
| 1027 | |
| 1028 | // set everything up again |
| 1029 | this->Initialize(); |
| 1030 | } |
| 1031 | |
| 1032 | // Begin the rendering process. |
| 1033 | void vtkXOpenGLRenderWindow::Start() |
no test coverage detected