------------------------------------------------------------------------------
| 960 | |
| 961 | //------------------------------------------------------------------------------ |
| 962 | void vtkParallelRenderManager::SetMagnifyImageMethod(int method) |
| 963 | { |
| 964 | if (this->MagnifyImageMethod == method) |
| 965 | { |
| 966 | return; |
| 967 | } |
| 968 | |
| 969 | this->MagnifyImageMethod = method; |
| 970 | // May need to modify image reduction factor. |
| 971 | this->SetImageReductionFactor(this->ImageReductionFactor); |
| 972 | } |
| 973 | |
| 974 | //------------------------------------------------------------------------------ |
| 975 | void vtkParallelRenderManager::SetImageReductionFactorForUpdateRate(double desiredUpdateRate) |
no test coverage detected