-------------------------------------------------------------------------------
| 187 | |
| 188 | //------------------------------------------------------------------------------- |
| 189 | bool vtkWasmSceneManager::RemoveObserver(vtkTypeUInt32 identifier, unsigned long tag) |
| 190 | { |
| 191 | |
| 192 | auto object = vtkObject::SafeDownCast(this->GetObjectAtId(identifier)); |
| 193 | if (object == nullptr) |
| 194 | { |
| 195 | return false; |
| 196 | } |
| 197 | object->RemoveObserver(tag); |
| 198 | return true; |
| 199 | } |
| 200 | |
| 201 | //------------------------------------------------------------------------------- |
| 202 | bool vtkWasmSceneManager::BindRenderWindow( |
no test coverage detected