------------------------------------------------------------------------------
| 55 | |
| 56 | //------------------------------------------------------------------------------ |
| 57 | bool spinOnceAndGetDone(void* arg) |
| 58 | { |
| 59 | vtkWebAssemblyRenderWindowInteractor* iren = |
| 60 | static_cast<vtkWebAssemblyRenderWindowInteractor*>(arg); |
| 61 | iren->ProcessEvents(); |
| 62 | return iren->GetDone(); |
| 63 | } |
| 64 | |
| 65 | //------------------------------------------------------------------------------ |
| 66 | void unRegisterInteractor(void* iren) |
nothing calls this directly
no test coverage detected