[EXPERIMENTAL] About screen refresh rate - OnePlus 7 Pro Guides, News, & Discussion

!!! WARNING !!!
Some of the users reported they are having issues with Google gestures / OOS gestures navigation after enabling mode 0 described below
and that the only way that worked to fix them was to perform a factory reset. Use at your own risk and always have a backup plan.
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------
While implementing a QS tile for switching screen refresh rate into GravityBox I came across some interesting facts during reverse engineering.
Refresh rate has in fact 3 modes already although settings app shows only 2 of them (60Hz/90Hz).
Code:
.field private static final ONEPLUS_SCREEN_REFRESH_RATE:Ljava/lang/String; = "oneplus_screen_refresh_rate"
.field private static final OP_60HZ_MODE_VALUE:I = 0x1
.field private static final OP_90HZ_MODE_VALUE:I = 0x0
.field private static final OP_AUTO_MODE_VALUE:I = 0x2
90Hz mode as can be seen in the settings is in fact mapped to AUTO_MODE (0x2) which most likely is the reason why we can observer some auto-switching which is
based on screen content (e.g. video playing, etc.). Using mode 0 should in theory enable full-time 90Hz without auto-switching.
I can't confirm exactly as I'm using it for a short period of time.
Anybody willing to experiment it should be possible to switch modes using adb shell:
Code:
adb shell settings put global oneplus_screen_refresh_rate [mode]
where [mode] is 0 for 90Hz, 1 for 60Hz and 2 for Auto mode
When using mode 0, none of the existing options in the settings will be selected.
Also, option summary text in Display settings will show 60Hz which is a bug - simply they did not account for a fact that somebody can change the value to something else from outside.

Thanks for the input mate, cheers.

Tried the input but it didn't work. Maybe I missed something.

MaKuRoZuMK2 said:
Tried the input but it didn't work. Maybe I missed something.
Click to expand...
Click to collapse
adb command not recognized ? or dont see any changes ?
Once its activated, in settings - display - refresh rate , both options will not be selected .

JJay666 said:
adb command not recognized ? or dont see any changes ?
Once its activated, in settings - display - refresh rate , both options will not be selected .
Click to expand...
Click to collapse
Don't see any changes mate
ps. Running on Hydrogen OS 9.5.5 maybe it matters but it should not

Mega improvement. We are in 90hz. Strange that in gui it set option to 2 (auto). They know it will consume 5 to 10% battery more [emoji16]

MaKuRoZuMK2 said:
Don't see any changes mate
ps. Running on Hydrogen OS 9.5.5 maybe it matters but it should not
Click to expand...
Click to collapse
Not sure then, its smooth on all apps now.

Roll back to Oxygen OS and got it, nvm

Also do not get mistaken by option in Settings app showing 60Hz when mode is set to full 90Hz.
It'a s bug in the Settings app - simply they did not account for a fact that somebody can change the value to something else from outside.

Thank u so much ....I noticed that the apps were stuttering while scrolling sometimes but now it's perfect

What's the recommended setting?

Wow, works like a champ, I was getting this weird thing where PoGo would open at 90hz refresh, then when I left and came back it would drop to something much lower.

ledvedder said:
What's the recommended setting?
Click to expand...
Click to collapse
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
What recommended settings are you referring to ? There's only 0, 1 , 2
Either you wan't it to be 90 all the time, 60 or auto

On a side note. Already have these brand new beautiful tiles in GravityBox

I guess I'm a bit confused. The OP says 0 = 90Hz. But then it says when using mode 0, none of the existing options will be selected.
2 sets it to 90Hz, 1 sets it to 60HZ, and 0 sets it to no options.
Is 0 really the auto setting?
Sent from my GM1915 using Tapatalk

ledvedder said:
I guess I'm a bit confused. The OP says 0 = 90Hz. But then it says when using mode 0, none of the existing options will be selected.
Is 0 really the auto setting?
Sent from my GM1915 using Tapatalk
Click to expand...
Click to collapse
adb shell settings get global oneplus_screen_refresh_rate
You ll see in which mode you are

C3C076 said:
On a side note. Already have these brand new beautiful tiles in GravityBox
Click to expand...
Click to collapse
I don't see it in your app, is there a new version of it ?

ledvedder said:
I guess I'm a bit confused. The OP says 0 = 90Hz. But then it says when using mode 0, none of the existing options will be selected.
2 sets it to 90Hz, 1 sets it to 60HZ, and 0 sets it to no options.
Is 0 really the auto setting?
Click to expand...
Click to collapse
Mode 2 is auto but it is shown as 90Hz in the Settings on purpose - that's how devs decided to cover up existing auto mode as it's probably not fully finished. Native 90Hz is mode 0. But mode 0 is not mapped in the Settings to any option that's why none is selected.
JJay666 said:
I don't see it in your app, is there a new version of it ?
Click to expand...
Click to collapse
It's work in progress

C3C076 said:
It's work in progress
Click to expand...
Click to collapse
Ah, no wonder. Thanks.

This is genuinely an amazing tip, the scrolling on sites which included videos was horrible.
Extremely happy with this :good:

Related

Touch Key Brightness app (restoring on boot) - tech info

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
I've created a little app that lets you set the touch key brightness, but most significantly, restores your settings on boot.
It's 99p and you can find it in the Market.
This thread is to give some background for those who like to hack around... the backlight value is read / written at '/sys/devices/platform/star_touch_led/wled'. The normal values made available are 00-20, you can program higher but it's probably not a good idea!
The default level can also be changed in the kernel.
Cheers!
P
Nice job there Paul.
This should be a step on the way to have a solution to make buttons as notification lights i guess?
Inebriatef said:
Nice job there Paul.
This should be a step on the way to have a solution to make buttons as notification lights i guess?
Click to expand...
Click to collapse
It certainly feels like it should be possible.
P
What value do you recommend?
Sent from my Nexus S using Tapatalk
I use 200 personally!
P
You just sold one.
Sent from my 2x
Interesting...
Hmmm almost interesting enough to start developing for andoid myself... but I'm currently too busy with other things....
I just tried to edit the value directly in the file using root explorer. When I saved and exited, the lights turned off. I tried other values, but it seems like the value only changes ones and that is to the value 0ua. Any edit after that doesn't change anything.
Aduck79 said:
I just tried to edit the value directly in the file using root explorer. When I saved and exited, the lights turned off. I tried other values, but it seems like the value only changes ones and that is to the value 0ua. Any edit after that doesn't change anything.
Click to expand...
Click to collapse
I had the same problem as you.
It is because you have to detete all of the text(wled: 2000uA) and write "6uA" (00-20aU ; 20uA is default)
then android will translate:
1uA = 100uA
2uA = 200uA
3uA = 300uA
n...uA = n...00uA
I'm recommending 6uA with a 30% screen brightness
I had buy your apps! it 's fix the Touch key to light problem.
If it 's can auto set on boot, will better.
xos84292 said:
I had buy your apps! it 's fix the Touch key to light problem.
If it 's can auto set on boot, will better.
Click to expand...
Click to collapse
It does!
P
thanks to make useful apps. I purchased.
Sent from my LG-SU660 using XDA App
Any chance of using the keys for notification?
Sent from my LG-P990 using XDA Premium App
racermussen said:
I had the same problem as you.
It is because you have to detete all of the text(wled: 2000uA) and write "6uA" (00-20aU ; 20uA is default)
then android will translate:
1uA = 100uA
2uA = 200uA
3uA = 300uA
n...uA = n...00uA
I'm recommending 6uA with a 30% screen brightness
Click to expand...
Click to collapse
Thanks!
racermussen said:
I had the same problem as you.
It is because you have to detete all of the text(wled: 2000uA) and write "6uA" (00-20aU ; 20uA is default)
then android will translate:
1uA = 100uA
2uA = 200uA
3uA = 300uA
n...uA = n...00uA
I'm recommending 6uA with a 30% screen brightness
Click to expand...
Click to collapse
This works for me also:
Code:
while true; do
echo 0 > /sys/devices/platform/star_touch_led/wled
sleep 1
echo 20 > /sys/devices/platform/star_touch_led/wled
sleep 1
done
Hmm, maybe you can use similar code to apps like SMS popup, to only light touch keys on notifications! Please try it...when the G2x for tmobile (rebranding with stock android) comes out, i'd DEFINITELY pay $5 for it.
Sent from my T-Mobile G1 using XDA App
racermussen said:
I had the same problem as you.
It is because you have to detete all of the text(wled: 2000uA) and write "6uA" (00-20aU ; 20uA is default)
then android will translate:
1uA = 100uA
2uA = 200uA
3uA = 300uA
n...uA = n...00uA
I'm recommending 6uA with a 30% screen brightness
Click to expand...
Click to collapse
How do you save it? File restores it self on reboot.
You can add a startup script that sets the value as you specified it
Having the button backlight "follow" the screen backlight seems like a trivial tweak tho...
I dont want to be a arse but isnt this a free feature in hiddenmenu?????
send from mah magic toaster
dazzle999 said:
I dont want to be a arse but isnt this a free feature in hiddenmenu?????
send from mah magic toaster
Click to expand...
Click to collapse
Hidden menu doesn't save settings on reboot.

[MOD] [APP] Vsharp 11/16/15

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
This application will allow you to adjust your displays sharpness value on the fly. Default is set at 4 but has an adjustment value of 0 to 99. Choose your amount of sharpness with this app.
Vsharp is built on Tasker for the device and on the device. Tasker is not needed to run this application. This app is currently in BETA. More features and adjustments will be added in the future. If you have an issue let me know.
CURRENT ISSUES.
Don't open the app after a reboot till it notifies you it's value is restored after a reboot. Again this is BETA and is work being done on getting it resolved.
REQUIREMENTS!
Must be rooted.
Must have busybox.
Must have SeLinux set to permissive.
HOW DOES Vsharp work?
It adjusts /sys/class/panel/img_tune/sharpness
DOWNLOAD
Version 1 BETA
https://www.androidfilehost.com/?fid=24269982086998092
Any issues or questions let me know!
TASKER SOURCE CODE
DOWNLOAD
https://www.androidfilehost.com/?fid=24269982086998106
Future2
Nice razz. Be interesting. Do have one question. You say built on tasker. Do we need tasker installed? Its not on the list but you put a link in 2nd op so I just wanted to double check.
Thanks again
Sent from my non-Mega loved v10 H901.
Zugshad said:
Nice razz. Be interesting. Do have one question. You say built on tasker. Do we need tasker installed? Its not on the list but you put a link in 2nd op so I just wanted to double check.
Thanks again
Sent from my non-Mega loved v10 H901.
Click to expand...
Click to collapse
No. You don't need Tasker to use Vsharp. Vsharp is a stand alone application built on tasker using the Tasker app factory.
I just posted the source in the second post to show the work if someone wanted to look at it or modify to their liking
Actually my biggest complaint about the display isn't actually the stock sharpness setting of 4, but the gamma. The gamma on my V10 is off a considerable amount and I'm losing detail in dark scenes. It's definitely not around the more standard gamma value of 2.2
I hoping to tune that up in the future also with this app.
Anyone has this confirmed to be working? ^.^
Will love to add it to the Index with confirmation
mgbotoe said:
Anyone has this confirmed to be working? ^.^
Will love to add it to the Index with confirmation
Click to expand...
Click to collapse
Confirmed.
Sent from my LG-H901 using Tapatalk
Isn't Tasker awesome?! Gonna try this out.
Update: Well it definitely appears to be doing something but I have no idea what I'm doing. Off to read some articles about sharpness before the Super Bowl, I suppose. Go Panthers!
A little confused on what exactly this does? Is this to fix that grainy look when taking pics or something?
baySF said:
A little confused on what exactly this does? Is this to fix that grainy look when taking pics or something?
Click to expand...
Click to collapse
It's just like setting the sharpness on your tv. It should not have any effect on taking a picture. If you see some grain effect in a pic its completely unrelated to this mod. What your experiencing is noise in a dark scene which is typical of a small, high pixel count camera sensor.
When taking a picture, try to use the lowest ISO setting possible. In a dark scene the ISO will need to be greater for a properly exposed pic. This is when you will experience the most noise.
razz1 said:
It's just like setting the sharpness on your tv. It should not have any effect on taking a picture. If you see some grain effect in a pic its completely unrelated to this mod. What your experiencing is noise in a dark scene which is typical of a small, high pixel count camera sensor.
When taking a picture, try to use the lowest ISO setting possible. In a dark scene the ISO will need to be greater for a properly exposed pic. This is when you will experience the most noise.
Click to expand...
Click to collapse
okay thanks for clearing this up. Yeah I can definitely see the noise when using snapchat and it's annoying. Thought this mod was related to the noise and was gonna try it out. Thanks though!
I thought there is no working root on LG V10 yet?
Gesendet von meinem LG V10
Anyone have a set of values to go of as a start?
Sent from my LG-H900 using Tapatalk
greekunit690 said:
Anyone have a set of values to go of as a start?
Sent from my LG-H900 using Tapatalk
Click to expand...
Click to collapse
I personally set it to 0 as there really isn't any need for sharpening. It just introduces noise in the display.
SWEET! Thanks for this! I was really bummed that the screen on the amazing V10 was not as sharp as my G3. Now its just as sharp. (doesn't seem to affect the second screen, but don't care)
I set it to value 30...anything more and it doesn't seem to do anything. Also, setting to max, 99, upon reboot is goes back to 0.
EDIT: So.....maybe an issue. The sharpening effect dies when i launch some apps, like Gallery. I then go back into the VSharp app and its reads the value and its back to 4..like it was overridden by the system.
Edit: Removed Gallery, Switched to Google Photos app. Doesn't instant kill sharp effect when that app is used.
Sharpness not sticking after screen off.
I definitely am noticing that any sharpness value is not sticking/being re-applied when the screen shuts off/locked or goes to sleep.
I go back into the app, and it reads the current value and it says what i set it to (30), but when i toggle it up or down, I can instantly see the example bars sharpen up, which proves it was off then was re-applied when I toggled the value.
I tried setting the app to ignore battery optimizations in system settings, thinking maybe the OS is killing the app in the background, but that has no effect. I also tried disabling the lock screen entirely, no change.
Any ideas? I do have other things like Xposed, App settings (530 dpi set on certain apps), Gravity Box, and G4 TweakBox installed....but none of them have any display mods enabled.
Any way to make a widget or something i can one-press to toggle the value and re-apply....vs having to use the app every time I want the screen sharp after it goes off.
Edit: Is this app supposed to may a dozen and more "Subsystem/img_tune/" directories in /sys/class/panel/...all inside of each other.
Is there a way to just change the sharpness file and lock it to read only o that it can be overridden...I have tried setting permissions using root explorer to read only...but it still get overwritten at reboot..and eventually by system.
Do i need to set selinux every time i reboot and app runs?

[GUIDE] Changing min width/DPI of MIUI 9 without rooting

Hi all, this may have its own dedicated thread but I was not able to find it during my time with my Mi 6 and Mix 2.
When I moved over to MIUI I was shocked that they removed Min Width in Developer Options, because opening apps such as Telegram gave it such a horrid text size I could not adjust.
This will require you to have 5 minutes of your lunch break, a PC, and also depending on where you are accessing your Mi device, a VPN.
ATTENTION: To those who have used this command before on other devices, the device WILL RETAIN the density after a reboot. Don't worry about doing this every reboot, because you DO NOT HAVE TO.
NOTE: This will NOT cause any reboots of any kind, and you can still use themes from MIUI or wherever. The only apps I have noticed have a weird design will be the Themes app, where the app will look off tilted. Other than that, Xiaomi should have just left this in instead of neglecting their own app's density adaptation.
I am located in Hong Kong, or a China based region!
Turn off wifi, and ensure your device is linked to a Mi Account
Go to Settings -> About Phone -> Tap MIUI Version 7 times
Go back, and go to Additional Settings -> Developer Options -> USB Debugging
Then click on USB Debugging (Security settings)
Go through the three prompted Apply dialogs with countdown, and ensure the toggle is enabled.
If it isn't, ensure your wifi is disabled, mobile data is enabled and Mi account is linked
Go to a PC with adb set up: https://forum.xda-developers.com/showthread.php?t=2588979 (Windows)
Open a Command prompt and type:
Code:
adb shell
wm density 380
exit
I picked 380, but you can make it smaller
To reset the density, type:
Code:
adb shell
wm density reset
exit
I am not living in a China based region!
Turn off wifi, and ensure your device is linked to a Mi Account
Install a VPN, such as Tunnelbear, and VPN back to an HK or China server (REQUIRED): https://play.google.com/store/apps/details?id=com.tunnelbear.android&hl=en
Go to Settings -> About Phone -> Tap MIUI Version 7 times
Go back, and go to Additional Settings -> Developer Options -> USB Debugging
Then click on USB Debugging (Security settings)
Go through the three prompted Apply dialogs with countdown, and ensure the toggle is enabled.
If it isn't, ensure your wifi is disabled, mobile data is enabled and Mi account is linked
Go to a PC with adb set up: https://forum.xda-developers.com/showthread.php?t=2588979 (Windows)
Open a Command prompt and type:
Code:
adb shell
wm density 380
exit
I picked 380, but you can make it smaller
To reset the density, type:
Code:
adb shell
wm density reset
exit
Screenshots:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
I assume the vpn is for turning on ADB debugging? Does the global ROM require this as well? I'm 99% that I've used it without a vpn (though, my device is unlocked). I can't confirm now though as I'm no longer on MIUI.
bleached45 said:
I assume the vpn is for turning on ADB debugging? Does the global ROM require this as well? I'm 99% that I've used it without a vpn (though, my device is unlocked). I can't confirm now though as I'm no longer on MIUI.
Click to expand...
Click to collapse
USB Debugging (Security settings) only.
I am on global ROM.
Having your device BL unlocked means most, if not all restrictions have been lifted.
Rogers is Canadian?
allrockedout said:
Rogers is candian?
Click to expand...
Click to collapse
Yes
I've tried the adb shell method a few times before on MIUI 9 on my Mi4 (from 480 to 400), but it wrecks the notification shade, especially on the quick tiles (it enlarge by themselves) and some notification row icons (somehow the icons ended up having small black-ish frame overlaid on the top-left). Possibly only on MM MIUI 9, since that's all Mi4 gets at best.
Is it because of how MIUI theming heavily uses bitmaps (with flawed asset scaling on their own default theme) rather than vector drawables for their glyphs?
Great work around buddy, but in the end you'll have to change the rows and columns size too as those look horrid then.
Though I used EasyDPI and Xposed to rearrange these BASIC settings, one can always use the Default Theme Layouts.
rxl.noir said:
I've tried the adb shell method a few times before on MIUI 9 on my Mi4 (from 480 to 400), but it wrecks the notification shade, especially on the quick tiles (it enlarge by themselves) and some notification row icons (somehow the icons ended up having small black-ish frame overlaid on the top-left). Possibly only on MM MIUI 9, since that's all Mi4 gets at best.
Is it because of how MIUI theming heavily uses bitmaps (with flawed asset scaling on their own default theme) rather than vector drawables for their glyphs?
Click to expand...
Click to collapse
Hmm that's weird, I never had issues with my notification shade.
That is a possibility if they don't use vector drawables, but I believe it's just like how Samsung once upon a time made all their apps at a fixed DPI so scaling just looks really bad.
I've been using default theme and another theme called Flam[DD] and changing DPI works flawlessly.
Sent from my Xiaomi Mi MIX 2 using XDA Labs
OverLord2901 said:
Great work around buddy, but in the end you'll have to change the rows and columns size too as those look horrid then.
Though I used EasyDPI and Xposed to rearrange these BASIC settings, one can always use the Default Theme Layouts.
Click to expand...
Click to collapse
Do you mean for the notification toggles? Yeah, it's pretty bad, but I usually don't root so it's better than seeing huge texts in apps haha.
Sent from my Xiaomi Mi MIX 2 using XDA Labs
nicholaschum said:
Do you mean for the notification toggles? Yeah, it's pretty bad, but I usually don't root so it's better than seeing huge texts in apps haha.
Click to expand...
Click to collapse
Yeah the toggles and even the rows and colums in a folder. These are actually basic things. Have to do these after every Weekly Updates too. Sucks.
Thanks for the nice Guide!! Works awesome on my Mi Max 2.
Cheers!
The following may be much easier. You don't need adb, unlock or root.
http://en.miui.com/thread-1093064-7-1.html
I confirmed this works on MIUI 9 Chinese stable ROM with developer mode turned on.
In advance you have to install Google Play. As you know, this doesn't require unlock or root.
http://en.miui.com/thread-718159-1-1.html
Finding difficult using this on my windows 10
Can't find adb on my device manager
I did this on my Redmi Note 5 Global and I didn't need to use a VPN. Thanks!
Sent from my Xiaomi Redmi Note 5 using XDA Labs
succeeded!
I just root my mi 6x and have it done on "termux",
guess my custom roms days are over, I can just live with whatever miui with the custom dpi )

Question Adaptive refresh rate not working.

There is a FPS counter option in the developer option. After turning it on. The refresh rate doesn't change even in AOD it stays at 120hz. I think this is the problem why our battery is poor. I try factory resetting but still the same. I think the last software update broke it.
veeny101 said:
There is a FPS counter option in the developer option. After turning it on. The refresh rate doesn't change even in AOD it stays at 120hz. I think this is the problem why our battery is poor. I try factory resetting but still the same. I think the last software update broke it.
Click to expand...
Click to collapse
u have exynoss or snapdragon?
for me on exynoss / last update AUAC adaptive work good , set on show refresh rate in developer option show between 120hz and 60hz .
carlitobahsoun said:
u have exynoss or snapdragon?
for me on exynoss / last update AUAC adaptive work good , set on show refresh rate in developer option show between 120hz and 60hz .
Click to expand...
Click to collapse
I have an exynos s21 ultra. Can send pictures on how it changes. Mine stays 120 all the time.
veeny101 said:
I have an exynos s21 ultra. Can send pictures on how it changes. Mine stays 120 all the time.
Click to expand...
Click to collapse
lol , i try to record using screen recording but it keep 60hz while recording.
but trust me it work .
carlitobahsoun said:
lol , i try to record using screen recording but it keep 60hz while recording.
but trust me it work .
Click to expand...
Click to collapse
Mines stays on 120 only. I did 2 hard reset already.
veeny101 said:
I have an exynos s21 ultra. Can send pictures on how it changes. Mine stays 120 all the time.
Click to expand...
Click to collapse
Try clearing the system cache, a hard reboot, safe mode to rule out 3rd party apks (safe mode may disable adaptive refresh)
Try temporarily turning off Developer options.
Double check all settings, Samsung loves to hid them.
If you have Samsung Device Care clear it's data.
are u enable enhanced processing???
its the high performance .
maybe coz of that
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
mine work , no prob at all
carlitobahsoun said:
are u enable enhanced processing???
its the high performance .
maybe coz of that
Click to expand...
Click to collapse
I'm on fresh hard reset haven't touch anything on setting except the fps counter.
plz check thiz if enabled
carlitobahsoun said:
plz check thiz if enabled
Click to expand...
Click to collapse
It's off. Can you please upload a screen record of the fps changing so I can show it to the Samsung store that I bought my phone.
u have mega to upload for u? or Dropbox??
pm sent with mega link
Have the same problem sometimes... The adaptive refreshrate needs some fixes... It also stays on 120 or goes down to 60 when looking pictures... It should go as low as 10hz then...
Having exactly the same issue here, stuck on 120 even with AOD. Exynos
Are you on low brightness ? Is adaptive brightness turned on?
My exynos s21 Ultra does go down to 48hz but never reaches 10hz. Also I'm also spotting when in lowish light, when reading the drop from 120 to 60/48 causes the screen colour to slightly change
That's interesting! I was on the lowest brightness and it says at 120 all the time, if I move the brightness a little higher, the refresh is 60 or 120, more importantly AOD is now 60.
When move back to lowest brightness, stuck again at 120, for AOD as well. Wonder if that has been killing my battery. I thought the refresh should go down to 10?
Not sure if this may answer at least some aspects of the queries in this thread:
Investigating The Galaxy S21 Ultra New OLED Emitter: Huge Efficiency Improvements
www.anandtech.com
"If you’re using your phone in dark or even dim conditions, the variable refresh rate doesn’t work at all, and the 120Hz mode comes at a huge 300mW cost in baseline power..."
"...I wish Samsung instead of disabling the VRR/LFD under dim conditions would simply switch to 60Hz mode as that would be a much more power efficient alternative. Of course, the best solution would be simply to get rid of this ambient brightness limitation and allow 120Hz and VRR in all conditions – it’s still not exactly clear at to the technical reason why Samsung is employing this limitation in the first place..."

Question Changing refresh rate to 90hz

I've read about a guide to set the refresh rate to 90hz for the poco x3 nfc and the poco x3 pro, through an app called setedit. Did someone tried to change the refresh rate for the redmi with this trick?
I tried it, it doesn't work !
yes I have the 90hz active with my redmi note 10 pro with this app
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
My phone is set to 90 without any problem.
frank1980 said:
yes I have the 90hz active with my redmi note 10 pro with this app
Click to expand...
Click to collapse
Which miui version are you using? You noticed differences (possibly gains) in battery consumption?
Thanks I managed to get this working too on miui 12.5.1
For anyone that's interested download "setedit", navigate to system tables tab, scroll to "user_refresh_rate" and change value to 60, 90, or 120.
Don't set values outside those or it may crash the phone.
victus42 said:
Which miui version are you using? You noticed differences (possibly gains) in battery consumption?
Click to expand...
Click to collapse
brother I'm using official 12.5.4.0 and yes some battery gain is better
stonesushi said:
Thanks I managed to get this working too on miui 12.5.1
For anyone that's interested download "setedit", navigate to system tables tab, scroll to "user_refresh_rate" and change value to 60, 90, or 120.
Don't set values outside those or it may crash the phone.
Click to expand...
Click to collapse
exactly modifying other values is a risk
frank1980 said:
exactly modifying other values is a risk
Click to expand...
Click to collapse
What exactly app you are using?I try SETEDIT on Play Store but it didn't work.
SetEdit (Settings database editor)
stonesushi said:
Thanks I managed to get this working too on miui 12.5.1
For anyone that's interested download "setedit", navigate to system tables tab, scroll to "user_refresh_rate" and change value to 60, 90, or 120.
Don't set values outside those or it may crash the phone.
Click to expand...
Click to collapse
I tried but it doesn't work for me. The settings say 90 hz, but the developers options counter says 60 and even an app from the play store says 60. What steps did you follow precisely? Did you reboot at the end?
stonesushi said:
Thanks I managed to get this working too on miui 12.5.1
For anyone that's interested download "setedit", navigate to system tables tab, scroll to "user_refresh_rate" and change value to 60, 90, or 120.
Don't set values outside those or it may crash the phone.
Click to expand...
Click to collapse
I am wondering if the panel itself doesn't support 90 hz, how could an app make it work.
BTW I tried with setedit app, but there is nothing like "user_refresh_rate" option. On 12.5.4 version.
Cheers!
badday0401 said:
What exactly app you are using?I try SETEDIT on Play Store but it didn't work.
Click to expand...
Click to collapse
there is the version brother
It shows 90 Hz but actually running at 60Hz.Very weird.Maybe it depends on different panel displays.
badday0401 said:
View attachment 5362411
It shows 90 Hz but actually running at 60Hz.Very weird.Maybe it depends on different panel displays.
Click to expand...
Click to collapse
I am in the same situation, I don't know why
victus42 said:
I am in the same situation, I don't know why
Click to expand...
Click to collapse
Because the panel doesn't support 90 hz as simple as that. This is the reason why ROM devs can't add 90 hz for this device.
Enjoy either 60 or 120 hz. All trials and efforts for 90 hz are waste. That's it.
Cheers!
frank1980 said:
brother I'm using official 12.5.4.0 and yes some battery gai
Click to expand...
Click to collapse
victus42 said:
Which miui version are you using? You noticed differences (possibly gains) in battery consumption?
Click to expand...
Click to collapse
Didnt you got 12.5.8? 120 hz not working on youtube...

Categories

Resources