ebiten: fix wrong old comments

This commit is contained in:
Hajime Hoshi 2022-02-11 04:56:31 +09:00
parent a35aa78bd2
commit 3804d4c92d

View File

@ -35,8 +35,7 @@ func IsWindowDecorated() bool {
// SetWindowDecorated works only on desktops. // SetWindowDecorated works only on desktops.
// SetWindowDecorated does nothing on other platforms. // SetWindowDecorated does nothing on other platforms.
// //
// SetWindowDecorated does nothing on macOS when the window is fullscreened natively by the macOS desktop // SetWindowDecorated does nothing on macOS when the window is fullscreened.
// instead of SetFullscreen(true).
// //
// SetWindowDecorated is concurrent-safe. // SetWindowDecorated is concurrent-safe.
func SetWindowDecorated(decorated bool) { func SetWindowDecorated(decorated bool) {
@ -56,8 +55,7 @@ func IsWindowResizable() bool {
// //
// The window is not resizable by default. // The window is not resizable by default.
// //
// SetWindowResizable does nothing on macOS when the window is fullscreened natively by the macOS desktop // SetWindowResizable does nothing on macOS when the window is fullscreened.
// instead of SetFullscreen(true).
// //
// SetWindowResizable is concurrent-safe. // SetWindowResizable is concurrent-safe.
func SetWindowResizable(resizable bool) { func SetWindowResizable(resizable bool) {
@ -193,8 +191,7 @@ func IsWindowFloating() bool {
// //
// SetWindowFloating does nothing on browsers or mobiles. // SetWindowFloating does nothing on browsers or mobiles.
// //
// SetWindowFloating does nothing on macOS when the window is fullscreened natively by the macOS desktop // SetWindowFloating does nothing on macOS when the window is fullscreened.
// instead of SetFullscreen(true).
// //
// SetWindowFloating is concurrent-safe. // SetWindowFloating is concurrent-safe.
func SetWindowFloating(float bool) { func SetWindowFloating(float bool) {