From 48c24ae56d786189d95746e82b13e4a769b9c502 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Wed, 27 Dec 2023 17:54:59 +0100 Subject: [PATCH] Add toggleFullscreen() function --- pixmappresenter.d | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/pixmappresenter.d b/pixmappresenter.d index b97961c..bf030ac 100644 --- a/pixmappresenter.d +++ b/pixmappresenter.d @@ -938,8 +938,6 @@ final class PixmapPresenter { +/ void reconfigure(const PresenterConfig config) { assert(false, "Not implemented"); - //_framebuffer.size = config.internalResolution; - //_renderer.reconfigure(config); } /++ @@ -961,6 +959,16 @@ final class PixmapPresenter { _poc.window.fullscreen = enabled; } + /++ + Toggles the fullscreen state of the window. + + Turns a non-fullscreen window into fullscreen mode. + Exits fullscreen mode for fullscreen-windows. + +/ + void toggleFullscreen() { + this.isFullscreen = !this.isFullscreen; + } + /++ Returns the underlying [arsd.simpledisplay.SimpleWindow|SimpleWindow]