Add toggleFullscreen() function

This commit is contained in:
Elias Batek 2023-12-27 17:54:59 +01:00
parent 2a31c43ad6
commit 48c24ae56d
1 changed files with 10 additions and 2 deletions

View File

@ -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]