-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
6.4.0 FF
-
None
I have 4 monitors connected and I want to use one of them for testing eglfs. If I enumerate all outputs explicitly in eglfs.json and skip the ones I don't want to use, it works:
{
"device": "/dev/dri/card0",
"virtualDesktopLayout": "horizontal",
"hwcursor": true,
"pbuffers": true,
"outputs": [
{
"name": "HDMI1",
"mode": "1920x1080",
"primary": true
},
{
"name": "DP1",
"mode": "skip"
},
{
"name": "DP2",
"mode": "skip"
},
{
"name": "DP3",
"mode": "skip"
}
]
}
But if I list only HDMI1 in the outputs map, it chooses to map a window to the first output discovered
instead of the one I designated as primary (if I simply run qml something.qml -platform eglfs).