------------------------------------------------------------------------------
| 454 | |
| 455 | //------------------------------------------------------------------------------ |
| 456 | void vtkXRenderWindowInteractor::Finalize() |
| 457 | { |
| 458 | vtkXRenderWindowInteractorInternals::Instances.erase(this); |
| 459 | |
| 460 | if (this->RenderWindow) |
| 461 | { |
| 462 | // Finalize the window |
| 463 | this->RenderWindow->Finalize(); |
| 464 | } |
| 465 | |
| 466 | // disconnect from the display, even if we didn't own it |
| 467 | this->DisplayId = nullptr; |
| 468 | this->Internal->DisplayConnection = -1; |
| 469 | |
| 470 | // revert to uninitialized state |
| 471 | this->Initialized = false; |
| 472 | this->Enabled = false; |
| 473 | } |
| 474 | |
| 475 | //------------------------------------------------------------------------------ |
| 476 | void vtkXRenderWindowInteractor::Enable() |
no test coverage detected