Merge pull request #85230 from ztc0611/3.x-fix-ios-get-refreshrate
[3.x] [iOS] Make `OSIPhone::get_screen_refresh_rate` respect iOS Low Power Mode
This commit is contained in:
commit
7d14dbf11f
1 changed files with 5 additions and 1 deletions
|
@ -653,7 +653,11 @@ int OSIPhone::get_screen_dpi(int p_screen) const {
|
||||||
}
|
}
|
||||||
|
|
||||||
float OSIPhone::get_screen_refresh_rate(int p_screen) const {
|
float OSIPhone::get_screen_refresh_rate(int p_screen) const {
|
||||||
return [UIScreen mainScreen].maximumFramesPerSecond;
|
float fps = [UIScreen mainScreen].maximumFramesPerSecond;
|
||||||
|
if ([NSProcessInfo processInfo].lowPowerModeEnabled) {
|
||||||
|
fps = 60;
|
||||||
|
}
|
||||||
|
return fps;
|
||||||
}
|
}
|
||||||
|
|
||||||
Rect2 OSIPhone::get_window_safe_area() const {
|
Rect2 OSIPhone::get_window_safe_area() const {
|
||||||
|
|
Loading…
Reference in a new issue