Changeset 84252 in vbox
- Timestamp:
- May 11, 2020 12:08:56 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/display-svga-x11.cpp
r84219 r84252 563 563 { 564 564 case RRScreenChangeNotify: 565 VBClLogInfo("RRScreenChangeNotify \n");565 VBClLogInfo("RRScreenChangeNotify event received\n"); 566 566 queryMonitorPositions(); 567 567 break; 568 case RRNotify:569 VBClLogInfo("RRNotify\n");570 break;571 568 default: 572 VBClLogInfo("Unknown RR event: %d\n", event.type);573 569 break; 574 570 } … … 808 804 &x11Context.hVMWCtrlMajorOpCode, &dummy, &dummy); 809 805 if (!x11Context.fWmwareCtrlExtention) 810 VBClLogError("VMWARE's ctrl extension is not available! \n");806 VBClLogError("VMWARE's ctrl extension is not available! Multi monitor management is not possible\n"); 811 807 else 812 {813 808 VBClLogInfo("VMWARE's ctrl extension is available. Major Opcode is %d.\n", x11Context.hVMWCtrlMajorOpCode); 814 }815 809 816 810 /* Check Xrandr stuff. */ … … 840 834 x11Context.rootWindow = DefaultRootWindow(x11Context.pDisplay); 841 835 x11Context.hEventMask = RRScreenChangeNotifyMask; 842 if (x11Context.hRandRMinor >= 2)843 x11Context.hEventMask |= RRCrtcChangeNotifyMask844 | RROutputChangeNotifyMask845 | RROutputPropertyNotifyMask;846 836 847 837 /* Select the XEvent types we want to listen to. */
Note:
See TracChangeset
for help on using the changeset viewer.