chore: remove destroy() methods from RenderTarget and SwapChain (these need to be managed by Viewer to handle instances where the viewer itself has been disposed

This commit is contained in:
Nick Fisher
2024-10-22 12:44:46 +08:00
parent a6c9ee60a9
commit f2e0f32054
2 changed files with 2 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
abstract class RenderTarget {
Future destroy();
}

View File

@@ -1,3 +1,3 @@
abstract class SwapChain {
Future destroy();
}