diff --git a/thermion_dart/lib/src/viewer/src/thermion_viewer_stub.dart b/thermion_dart/lib/src/viewer/src/thermion_viewer_stub.dart index d849c5d2..9cfc004b 100644 --- a/thermion_dart/lib/src/viewer/src/thermion_viewer_stub.dart +++ b/thermion_dart/lib/src/viewer/src/thermion_viewer_stub.dart @@ -1062,6 +1062,18 @@ class ThermionViewerStub extends ThermionViewer { // TODO: implement loadGlbFromBuffer throw UnimplementedError(); } + + @override + Future destroyRenderTarget(covariant RenderTarget renderTarget) { + // TODO: implement destroyRenderTarget + throw UnimplementedError(); + } + + @override + Future destroySwapChain(covariant SwapChain swapChain) { + // TODO: implement destroySwapChain + throw UnimplementedError(); + } }