------------------------------------------------------------------------------
| 689 | |
| 690 | //------------------------------------------------------------------------------ |
| 691 | int vtkWebAssemblyRenderWindowInteractor::InternalDestroyTimer(int platformTimerId) |
| 692 | { |
| 693 | auto& internals = (*this->Internals); |
| 694 | int tid = this->GetVTKTimerId(platformTimerId); |
| 695 | vtkDestroyTimer(platformTimerId, this->IsOneShotTimer(tid)); |
| 696 | internals.Timers.erase(tid); |
| 697 | auto i = internals.VTKToPlatformTimerMap.find(tid); |
| 698 | internals.VTKToPlatformTimerMap.erase(i); |
| 699 | return 0; |
| 700 | } |
| 701 | |
| 702 | //------------------------------------------------------------------------------ |
| 703 | void vtkWebAssemblyRenderWindowInteractor::PrintSelf(ostream& os, vtkIndent indent) |
nothing calls this directly
no test coverage detected