------------------------------------------------------------------------------
| 125 | |
| 126 | //------------------------------------------------------------------------------ |
| 127 | void vtkWebApplication::SetNumberOfEncoderThreads(vtkTypeUInt32 numThreads) |
| 128 | { |
| 129 | this->Internals->Encoder->SetMaxThreads(numThreads); |
| 130 | this->Internals->Encoder->Initialize(); |
| 131 | } |
| 132 | |
| 133 | //------------------------------------------------------------------------------ |
| 134 | vtkTypeUInt32 vtkWebApplication::GetNumberOfEncoderThreads() |
nothing calls this directly
no test coverage detected