Files
cup_edit/thermion_dart/lib/src/filament/src/texture_details.dart
Nick Fisher 627447f8b0 refactoring
2025-03-19 12:27:13 +08:00

15 lines
412 B
Dart

///
/// This represents the backing "surface" that we render into.
/// "Texture" here is a misnomer as it is only a render target texture on certain platforms.
///
class TextureDetails {
final int textureId;
// both width and height are in physical, not logical pixels
final int width;
final int height;
TextureDetails(
{required this.textureId, required this.width, required this.height});
}