| 237 | //------------------------------------------------------------------------------ |
| 238 | template <class T> |
| 239 | void vtkImageThresholdExecute1( |
| 240 | vtkImageThreshold* self, vtkImageData* inData, vtkImageData* outData, int outExt[6], int id, T*) |
| 241 | { |
| 242 | switch (outData->GetScalarType()) |
| 243 | { |
| 244 | vtkTemplateMacro(vtkImageThresholdExecute( |
| 245 | self, inData, outData, outExt, id, static_cast<T*>(nullptr), static_cast<VTK_TT*>(nullptr))); |
| 246 | default: |
| 247 | vtkGenericWarningMacro("Execute: Unknown input ScalarType"); |
| 248 | return; |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | //------------------------------------------------------------------------------ |
| 253 | // This method is passed a input and output data, and executes the filter |
no test coverage detected