Changeset 67263 in vbox for trunk/src/VBox
- Timestamp:
- Jun 6, 2017 9:24:47 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/display-svga.cpp
r67043 r67263 273 273 return; 274 274 /* Try a topology (multiple screen) request. */ 275 x11GetRequest(pContext, X11_VMW_TOPOLOGY_REQ, pContext->hVMWMajor,275 x11GetRequest(pContext, pContext->hVMWMajor, X11_VMW_TOPOLOGY_REQ, 276 276 sizeof(struct X11VMWTOPOLOGYREQ) 277 277 + sizeof(struct X11VMWRECT) * (cRects - 1), … … 292 292 * simpler code to negligeably improved efficiency, so we just always try 293 293 * both requests instead of doing version checks or caching. */ 294 x11GetRequest(pContext, X11_VMW_RESOLUTION_REQUEST, pContext->hVMWMajor,294 x11GetRequest(pContext, pContext->hVMWMajor, X11_VMW_RESOLUTION_REQUEST, 295 295 sizeof(struct X11VMWTOPOLOGYREQ), 296 296 (struct X11REQHEADER **)&pReqResolution); … … 312 312 if (!VALID_PTR(pContext->pDisplay)) 313 313 VBClFatalError(("%s bad display argument.\n", __func__)); 314 x11GetRequest(pContext, X11_RANDR_GET_SCREEN_REQUEST, pContext->hRandRMajor,314 x11GetRequest(pContext, pContext->hRandRMajor, X11_RANDR_GET_SCREEN_REQUEST, 315 315 sizeof(struct X11RANDRGETSCREENREQ), 316 316 (struct X11REQHEADER **)&pReqGetScreen);
Note:
See TracChangeset
for help on using the changeset viewer.