------------------------------------------------------------------------------ The execute method created by the subclass.
| 633 | //------------------------------------------------------------------------------ |
| 634 | // The execute method created by the subclass. |
| 635 | void vtkThreadedImageAlgorithm::ThreadedRequestData(vtkInformation* vtkNotUsed(request), |
| 636 | vtkInformationVector** vtkNotUsed(inputVector), vtkInformationVector* vtkNotUsed(outputVector), |
| 637 | vtkImageData*** inData, vtkImageData** outData, int extent[6], int threadId) |
| 638 | { |
| 639 | this->ThreadedExecute(inData[0][0], outData[0], extent, threadId); |
| 640 | } |
| 641 | |
| 642 | //------------------------------------------------------------------------------ |
| 643 | // The execute method created by the subclass. |
no test coverage detected