------------------------------------------------------------------------------
| 3792 | |
| 3793 | //------------------------------------------------------------------------------ |
| 3794 | void vtkWebGPUPolyDataMapper::ComputeBounds() |
| 3795 | { |
| 3796 | this->CachedInput = this->GetInput(); |
| 3797 | this->InvokeEvent(vtkCommand::StartEvent, nullptr); |
| 3798 | if (!this->Static) |
| 3799 | { |
| 3800 | this->GetInputAlgorithm()->Update(); |
| 3801 | } |
| 3802 | this->InvokeEvent(vtkCommand::EndEvent, nullptr); |
| 3803 | if (!this->CachedInput) |
| 3804 | { |
| 3805 | vtkMath::UninitializeBounds(this->Bounds); |
| 3806 | return; |
| 3807 | } |
| 3808 | this->CachedInput->GetCellsBounds(this->Bounds); |
| 3809 | } |
| 3810 | |
| 3811 | VTK_ABI_NAMESPACE_END |
nothing calls this directly
no test coverage detected