You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes, i don't know if something necessary like this has to be reported to GitHub, but this is very annoying for me and I can't find a solution to my personal problem
Reproduction steps
1. Install a new fresh copy of BlissOS
2. Activate developer mode
3. Turn on 'Show refresh rate' options
Screenshots
I don't know how to take a screenshot by default in Bliss, the important thing is that a red number appears on the screen and says '60' (I know this is trivial, but I just followed the instructions)
Logs
why?
Category
Display
OS Version
16.x
The text was updated successfully, but these errors were encountered:
The issue is that the default mode your monitor advertises to the OS (Bliss in this case) is the one with lower refresh rate.
Then hwcomposer picks it first and stuck with it.
It’s possible to tell drm_minigbm_celadon hwcomposer to use a specific mode by using kernel parameters, but this requires figuring out mode id and connector id which you can do only if you are familiar with linux terminal and kernel (graphics) drm subsystem in sysfs/dev.
If you want the second resolution, 1920x1080
then MODE_ID=2
Then obtain CONNECTOR_ID from logcat | grep hwc (as soon as android boots before logs are erased)
in my case it was CONNECTOR_ID=64
On one of my devices MULTI_REFRESH_RATE=1 was sufficient to let me switch between different refresh rates from Android settings > display.
Switching to gbm_gralloc might work as an alternative if you cannot find modes/connector, however it may cause other issues.
TL;DR: You have find out the mode id and connector id for 100hz and supply them in kernel cmdline with MODE_ID= and CONNECTOR_ID= and use HWC=drm_minigbm_celadon GRALLOC=minigbm.
Another solution is to use edid_override feature of Linux kernel, it must be triggered before Android starts to use the GPU.
Description
Yes, i don't know if something necessary like this has to be reported to GitHub, but this is very annoying for me and I can't find a solution to my personal problem
Reproduction steps
1. Install a new fresh copy of BlissOS 2. Activate developer mode 3. Turn on 'Show refresh rate' options
Screenshots
Logs
why?
Category
Display
OS Version
16.x
The text was updated successfully, but these errors were encountered: