MCPcopy Create free account
hub / github.com/Kitware/VTK / InitializeRMIs

Method InitializeRMIs

Rendering/Parallel/vtkParallelRenderManager.cxx:892–910  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

890
891//------------------------------------------------------------------------------
892void vtkParallelRenderManager::InitializeRMIs()
893{
894 vtkDebugMacro("InitializeRMIs");
895
896 if (this->Controller == nullptr)
897 {
898 vtkErrorMacro("InitializeRMIs requires a controller.");
899 return;
900 }
901
902 if (!this->AddedRMIs)
903 {
904 this->AddedRMIs = 1;
905 this->RenderRMIId =
906 this->Controller->AddRMI(::RenderRMI, this, vtkParallelRenderManager::RENDER_RMI_TAG);
907 this->BoundsRMIId = this->Controller->AddRMI(::ComputeVisiblePropBoundsRMI, this,
908 vtkParallelRenderManager::COMPUTE_VISIBLE_PROP_BOUNDS_RMI_TAG);
909 }
910}
911
912//------------------------------------------------------------------------------
913void vtkParallelRenderManager::ResetAllCameras()

Callers 4

StartServicesMethod · 0.95
TestPProbeFunction · 0.80
MyMainFunction · 0.80

Calls 1

AddRMIMethod · 0.80

Tested by 3

TestPProbeFunction · 0.64
MyMainFunction · 0.64