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]