Changeset 86878 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Nov 12, 2020 6:40:58 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 141339
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp
r86877 r86878 1160 1160 1161 1161 #ifdef VBOX_WITH_VBOXSERVICE_DRMRESIZE 1162 1162 if (VbglR3DRMClientIsNeeded()) 1163 1163 { 1164 1164 rc = VbglR3DRMClientStart(); -
trunk/src/VBox/Additions/x11/VBoxClient/display-svga-x11.cpp
r86877 r86878 685 685 static DECLCALLBACK(int) vbclSVGAInit(void) 686 686 { 687 int rc; 688 687 689 /* In 32-bit guests GAs build on our release machines causes an xserver hang. 688 690 * So for 32-bit GAs we use our DRM client. */ 689 691 #if ARCH_BITS == 32 690 intrc = VbglR3DRMClientStart();692 rc = VbglR3DRMClientStart(); 691 693 if (RT_FAILURE(rc)) 692 694 VBClLogError("Starting DRM resizing client (32-bit) failed with %Rrc\n", rc); … … 703 705 if (isXwayland()) 704 706 { 705 intrc = VbglR3DRMClientStart();707 rc = VbglR3DRMClientStart(); 706 708 if (RT_FAILURE(rc)) 707 709 VBClLogError("Starting DRM resizing client failed with %Rrc\n", rc);
Note:
See TracChangeset
for help on using the changeset viewer.