Make IrrlichtDevice::isWindowVisible do what it says on the tin (#279)

This commit is contained in:
grorp
2024-01-19 18:17:26 +01:00
committed by GitHub
parent 9df2f0b944
commit 66786d0059
3 changed files with 13 additions and 6 deletions

View File

@ -178,7 +178,10 @@ namespace irr
virtual bool isFullscreen() const = 0;
//! Checks if the window could possibly be visible.
//! Currently, this only returns false when the app is paused on Android.
//! Currently, this only returns false when the activity is stopped on
//! Android. Note that for Android activities, "stopped" means something
//! different than you might expect (and also something different than
//! "paused"). Read the Android lifecycle documentation.
virtual bool isWindowVisible() const { return true; };
//! Get the current color format of the window