mirror of https://github.com/adamdruppe/arsd.git
Add toggleFullscreen() function
This commit is contained in:
parent
2a31c43ad6
commit
48c24ae56d
|
@ -938,8 +938,6 @@ final class PixmapPresenter {
|
||||||
+/
|
+/
|
||||||
void reconfigure(const PresenterConfig config) {
|
void reconfigure(const PresenterConfig config) {
|
||||||
assert(false, "Not implemented");
|
assert(false, "Not implemented");
|
||||||
//_framebuffer.size = config.internalResolution;
|
|
||||||
//_renderer.reconfigure(config);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/++
|
/++
|
||||||
|
@ -961,6 +959,16 @@ final class PixmapPresenter {
|
||||||
_poc.window.fullscreen = enabled;
|
_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]
|
Returns the underlying [arsd.simpledisplay.SimpleWindow|SimpleWindow]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue