------------------------------------------------------------------------------
| 547 | |
| 548 | //------------------------------------------------------------------------------ |
| 549 | bool vtkOpenGLFramebufferObject::Start(int width, int height) |
| 550 | { |
| 551 | if (!this->StartNonOrtho(width, height)) |
| 552 | { |
| 553 | return false; |
| 554 | } |
| 555 | |
| 556 | this->InitializeViewport(width, height); |
| 557 | return true; |
| 558 | } |
| 559 | |
| 560 | //------------------------------------------------------------------------------ |
| 561 | void vtkOpenGLFramebufferObject::ActivateBuffers() |
nothing calls this directly
no test coverage detected