summaryrefslogtreecommitdiff
path: root/shared-module/displayio/Display.c
diff options
context:
space:
mode:
Diffstat (limited to 'shared-module/displayio/Display.c')
-rw-r--r--shared-module/displayio/Display.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/shared-module/displayio/Display.c b/shared-module/displayio/Display.c
index 03185dffc..f210a80c3 100644
--- a/shared-module/displayio/Display.c
+++ b/shared-module/displayio/Display.c
@@ -150,14 +150,6 @@ void common_hal_displayio_display_set_auto_brightness(displayio_display_obj_t* s
self->auto_brightness = auto_brightness;
}
-void common_hal_displayio_display_set_dither(displayio_display_obj_t* self, bool dither) {
- displayio_display_core_set_dither(&self->core, dither);
-}
-
-bool common_hal_displayio_display_get_dither(displayio_display_obj_t* self) {
- return displayio_display_core_get_dither(&self->core);
-}
-
mp_float_t common_hal_displayio_display_get_brightness(displayio_display_obj_t* self) {
return self->current_brightness;
}