MCPcopy Create free account
hub / github.com/Kitware/VTK / GetAllDependencies

Method GetAllDependencies

Web/WebAssemblySession/vtkRemoteSession.cxx:183–190  ·  view source on GitHub ↗

-------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

181
182//-------------------------------------------------------------------------------
183emscripten::val vtkRemoteSession::GetAllDependencies(vtkTypeUInt32 object)
184{
185 std::size_t length;
186 auto* ids = vtkSessionGetAllDependencies(this->Session, object, &length);
187 val jsArray = Uint32Array.new_(typed_memory_view(length, ids));
188 vtkSessionFreeGetAllDependenciesResult(this->Session, ids);
189 return jsArray;
190}
191
192//-------------------------------------------------------------------------------
193void vtkRemoteSession::UpdateObjectFromState(emscripten::val state)

Callers

nothing calls this directly

Tested by

no test coverage detected