Changeset 57180 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Aug 4, 2015 4:01:29 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo.c
r57092 r57180 353 353 354 354 /* Check that this code cannot trigger the resizing bug in X.Org Server 1.3. 355 * See the work-around in PreInit. */355 * See the work-around in ScreenInit. */ 356 356 xf86RandR12GetOriginalVirtualSize(pScrn, &originalX, &originalY); 357 357 VBVXASSERT(originalX == VBOX_VIDEO_MAX_VIRTUAL && originalY == VBOX_VIDEO_MAX_VIRTUAL, ("OriginalSize=%dx%d", … … 931 931 932 932 #ifdef VBOXVIDEO_13 933 /* Work around a bug in the original X server modesetting code, which took934 * the first valid values set to these two as maxima over the server935 * lifetime. This bug was introduced on Feb 15 2007 and was fixed in commit936 * fa877d7f three months later, so it was present in X.Org Server 1.3. */937 933 pScrn->virtualX = VBOX_VIDEO_MAX_VIRTUAL; 938 934 pScrn->virtualY = VBOX_VIDEO_MAX_VIRTUAL; … … 1328 1324 } 1329 1325 1326 /* Work around a bug in the original X server modesetting code, which took 1327 * the first valid values set to these two as maxima over the server 1328 * lifetime. This bug was introduced on Feb 15 2007 and was fixed in commit 1329 * fa877d7f three months later, so it was present in X.Org Server 1.3. */ 1330 pScrn->virtualX = VBOX_VIDEO_MAX_VIRTUAL; 1331 pScrn->virtualY = VBOX_VIDEO_MAX_VIRTUAL; 1332 1330 1333 /* Initialise randr 1.2 mode-setting functions. */ 1331 1334 if (!xf86CrtcScreenInit(pScreen)) {
Note:
See TracChangeset
for help on using the changeset viewer.