------------------------------------------------------------------------------
| 543 | |
| 544 | //------------------------------------------------------------------------------ |
| 545 | void vtkXRenderWindowInteractor::UpdateSize(int x, int y) |
| 546 | { |
| 547 | // if the size changed send this on to the RenderWindow |
| 548 | if ((x != this->Size[0]) || (y != this->Size[1])) |
| 549 | { |
| 550 | this->Size[0] = x; |
| 551 | this->Size[1] = y; |
| 552 | this->RenderWindow->SetSize(x, y); |
| 553 | } |
| 554 | } |
| 555 | |
| 556 | //------------------------------------------------------------------------------ |
| 557 | void vtkXRenderWindowInteractor::UpdateSizeNoXResize(int x, int y) |
no test coverage detected