| 531 | } |
| 532 | |
| 533 | void* vtkImageExport::BufferPointerCallback() |
| 534 | { |
| 535 | if (!this->GetInput()) |
| 536 | { |
| 537 | return static_cast<void*>(nullptr); |
| 538 | } |
| 539 | else |
| 540 | { |
| 541 | return this->GetInput()->GetScalarPointer(); |
| 542 | } |
| 543 | } |
| 544 | |
| 545 | int vtkImageExport::GetDataNumberOfScalarComponents() |
| 546 | { |
no test coverage detected