From 877e8def80fef5f25f42a2d2fce7d7f24d5c381b Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Sat, 30 Nov 2024 14:01:11 +0800 Subject: [PATCH] add dithering to view --- thermion_dart/lib/src/viewer/src/shared_types/view.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/thermion_dart/lib/src/viewer/src/shared_types/view.dart b/thermion_dart/lib/src/viewer/src/shared_types/view.dart index 97383fb0..93882b13 100644 --- a/thermion_dart/lib/src/viewer/src/shared_types/view.dart +++ b/thermion_dart/lib/src/viewer/src/shared_types/view.dart @@ -1,6 +1,5 @@ import 'package:thermion_dart/thermion_dart.dart'; - /// /// The viewport currently attached to a [View]. /// @@ -29,4 +28,6 @@ abstract class View { Future setBloom(double strength); Future setStencilBufferEnabled(bool enabled); Future isStencilBufferEnabled(); + Future setDithering(bool enabled); + Future isDitheringEnabled(); }