------------------------------------------------------------------------------
| 682 | |
| 683 | //------------------------------------------------------------------------------ |
| 684 | void vtkParallelRenderManager::SatelliteEndRender() |
| 685 | { |
| 686 | if (this->CheckForAbortComposite()) |
| 687 | { |
| 688 | return; |
| 689 | } |
| 690 | // It's a mistake to check ParallelRendering on the Satellites. |
| 691 | // The Root node decides if the render calls are to be propagated to the |
| 692 | // satellites...the satellites always reply to the Root nodes requests. |
| 693 | // if (!this->ParallelRendering) |
| 694 | // { |
| 695 | // return; |
| 696 | // } |
| 697 | // Just because we are not doing compositing does not mean a subclass |
| 698 | // does not need to do post render processing. |
| 699 | // if (!this->UseCompositing) |
| 700 | // { |
| 701 | // return; |
| 702 | // } |
| 703 | |
| 704 | this->PostRenderProcessing(); |
| 705 | |
| 706 | this->WriteFullImage(); |
| 707 | |
| 708 | this->InvokeEvent(vtkCommand::EndEvent, nullptr); |
| 709 | } |
| 710 | |
| 711 | //------------------------------------------------------------------------------ |
| 712 | void vtkParallelRenderManager::RenderRMI() |
no test coverage detected