refactoring

This commit is contained in:
Nick Fisher
2025-03-21 17:18:16 +08:00
parent 4ef74c4c70
commit a67f42f0de
12 changed files with 262 additions and 52 deletions

View File

@@ -1,5 +1,6 @@
import 'dart:typed_data';
import 'package:thermion_dart/src/filament/src/engine.dart';
import 'package:thermion_dart/src/filament/src/scene.dart';
import 'package:thermion_dart/thermion_dart.dart';
class FilamentConfig<T, U> {
@@ -63,6 +64,16 @@ abstract class FilamentApp<T> {
///
Future destroySwapChain(SwapChain swapChain);
///
///
///
Future destroyView(View view);
///
///
///
Future destroyScene(Scene scene);
///
///
///
@@ -248,4 +259,9 @@ abstract class FilamentApp<T> {
int layer = 0,
bool loadResourcesAsync = false,
String? relativeResourcePath});
///
///
///
Future<T> createColorGrading(ToneMapper mapper);
}