Changeset 83257 in vbox
- Timestamp:
- Mar 11, 2020 12:42:35 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 136406
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/display-svga-x11.cpp
r83253 r83257 406 406 static int openLibRandR() 407 407 { 408 x11Context.pRandLibraryHandle = dlopen("/usr/lib/x86_64-linux-gnu/libXrandr.so", RTLD_LAZY /*| RTLD_LOCAL */); 409 408 x11Context.pRandLibraryHandle = dlopen("libXrandr.so", RTLD_LAZY /*| RTLD_LOCAL */); 410 409 if (!x11Context.pRandLibraryHandle) 411 { 412 VBClLogFatalError("Could not locate libXranr for dlopen\n"); 410 x11Context.pRandLibraryHandle = dlopen("libXrandr.so.2", RTLD_LAZY /*| RTLD_LOCAL */); 411 if (!x11Context.pRandLibraryHandle) 412 x11Context.pRandLibraryHandle = dlopen("libXrandr.so.2.2.0", RTLD_LAZY /*| RTLD_LOCAL */); 413 414 if (!x11Context.pRandLibraryHandle) 415 { 416 VBClLogFatalError("Could not locate libXrandr for dlopen\n"); 413 417 return VERR_NOT_FOUND; 414 418 } -
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r83142 r83257 1289 1289 { 1290 1290 AssertMsgReturn(pPosition, ("Empty monitor position array\n"), E_INVALIDARG); 1291 for (unsigned i = 0; i < cPositions; ++i) 1292 LogRel2(("Display::i_handleUpdateMonitorPositions: uScreenId=%d xOrigin=%d yOrigin=%dX\n", 1293 i, pPosition[i].x, pPosition[i].y)); 1294 1291 1295 if (mpDrv && mpDrv->pUpPort->pfnReportMonitorPositions) 1292 1296 mpDrv->pUpPort->pfnReportMonitorPositions(mpDrv->pUpPort, cPositions, pPosition);
Note:
See TracChangeset
for help on using the changeset viewer.