Changeset 91962 in vbox for trunk/src/VBox/Additions/x11
- Timestamp:
- Oct 21, 2021 3:20:29 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/display-svga-x11.cpp
r91716 r91962 1439 1439 /* Create a whole topology and send it to xrandr. */ 1440 1440 struct RANDROUTPUT aOutputs[VMW_MAX_HEADS]; 1441 int iRunningX = 0; 1441 1442 for (int j = 0; j < x11Context.hOutputCount; ++j) 1442 1443 { 1443 aOutputs[j].x = aMonitors[j].xOrigin;1444 aOutputs[j].x = iRunningX; 1444 1445 aOutputs[j].y = aMonitors[j].yOrigin; 1445 1446 aOutputs[j].width = aMonitors[j].cx; … … 1447 1448 aOutputs[j].fEnabled = !(aMonitors[j].fDisplayFlags & VMMDEV_DISPLAY_DISABLED); 1448 1449 aOutputs[j].fPrimary = (aMonitors[j].fDisplayFlags & VMMDEV_DISPLAY_PRIMARY); 1450 if (aOutputs[j].fEnabled) 1451 iRunningX += aOutputs[j].width; 1449 1452 } 1450 1453 /* In 32-bit guests GAs build on our release machines causes an xserver lock during vmware_ctrl extention
Note:
See TracChangeset
for help on using the changeset viewer.