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
The screen that I'm using right now does provide its own physical dimensions and the flutter device pixel ratio changes accordingly to it: my pixel ratio is 1.367054
What I want is to give dimensions of 0, 0 -d "0, 0"
To have a pixel ratio of 1.0, or otherwise even forcing the pixel ratio would be fine.
Anyway when I give the option for the dimensions the application still gets the dimensions from the GPU
.
The text was updated successfully, but these errors were encountered:
That's a reasonable request, though -d "0,0" will internally be interpreted as no explicit screen dimensions, automatically determine them from KMS.
Right now if you want a device pixel ratio of 1.0, you can calculate the necessary physical dimensions yourself. There are 38 logical pixels per cm, so you'd have to specify -d "211,126" to get a pixel ratio of 1.0, roughly
Though a --pixel-ratio arg would probably be better.
The screen that I'm using right now does provide its own physical dimensions and the flutter device pixel ratio changes accordingly to it: my pixel ratio is 1.367054
What I want is to give dimensions of 0, 0
-d "0, 0"
To have a pixel ratio of 1.0, or otherwise even forcing the pixel ratio would be fine.
Anyway when I give the option for the dimensions the application still gets the dimensions from the GPU
.
The text was updated successfully, but these errors were encountered: