VirtualBox

Changeset 55064 in vbox for trunk/src/VBox/Additions


Ignore:
Timestamp:
Apr 1, 2015 4:43:57 AM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
99353
Message:

Additions/x11: temporary check-in of new X11 Additions resizing code, small fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo.c

    r55043 r55064  
    150150static void VBOXSaveMode(ScrnInfoPtr pScrn);
    151151static void VBOXRestoreMode(ScrnInfoPtr pScrn);
    152 static void setSizesAndCursorIntegration(ScrnInfoPtr pScrn, bool fLimitedContext);
     152static void setSizesAndCursorIntegration(ScrnInfoPtr pScrn, bool fScreenInitTime, bool fVTSwitchTime);
    153153
    154154#ifndef XF86_SCRN_INTERFACE
     
    11461146    pNewMode->HDisplay = RT_CLAMP(pVBox->pScreens[0].aPreferredSize.cx, VBOX_VIDEO_MIN_SIZE, VBOX_VIDEO_MAX_VIRTUAL);
    11471147    pNewMode->VDisplay = RT_CLAMP(pVBox->pScreens[0].aPreferredSize.cy, VBOX_VIDEO_MIN_SIZE, VBOX_VIDEO_MAX_VIRTUAL);
    1148     setModeRandR11(pScrn, pScrn->currentMode, fLimitedContext);
    1149 }
    1150 
    1151 #endif
    1152 
    1153 static void setSizesAndCursorIntegration(ScrnInfoPtr pScrn, bool fLimitedContext)
     1148    setModeRandR11(pScrn, pNewMode, fLimitedContext);
     1149}
     1150
     1151#endif
     1152
     1153static void setSizesAndCursorIntegration(ScrnInfoPtr pScrn, bool fScreenInitTime, bool fVTSwitchTime)
    11541154{
    11551155    VBOXPtr pVBox = VBOXGetRec(pScrn);
    11561156   
    1157     TRACE_LOG("fLimitedContext=%d\n", fLimitedContext);
     1157    TRACE_LOG("fScreenInitTime=%d, fVTSwitchTime=%d\n", (int)fScreenInitTime, (int)fVTSwitchTime);
    11581158#ifdef VBOXVIDEO_13
    1159     setSizesRandR12(pScrn, fLimitedContext);
     1159    setSizesRandR12(pScrn, fScreenInitTime);
    11601160#else
    1161     setSizesRandR11(pScrn, fLimitedContext);
    1162 #endif
    1163     if (!fLimitedContext)
     1161    setSizesRandR11(pScrn, fScreenInitTime);
     1162#endif
     1163    if (!fVTSwitchTime)
    11641164        vbvxReprobeCursor(pScrn);
    11651165}
     
    11831183        vbvxReadSizesAndCursorIntegrationFromProperties(pScrn, &fNeedUpdate);
    11841184    if (fNeedUpdate)
    1185         setSizesAndCursorIntegration(pScrn, false);
     1185        setSizesAndCursorIntegration(pScrn, false, false);
    11861186}
    11871187
     
    13321332#endif
    13331333    /* set first video mode */
    1334     setSizesAndCursorIntegration(pScrn, true);
     1334    setSizesAndCursorIntegration(pScrn, true, false);
    13351335
    13361336    /* Register block and wake-up handlers for getting new screen size hints. */
     
    14011401    vbvxReadSizesAndCursorIntegrationFromHGSMI(pScrn, NULL);
    14021402    vbvxReadSizesAndCursorIntegrationFromProperties(pScrn, NULL);
    1403     setSizesAndCursorIntegration(pScrn, true);
     1403    setSizesAndCursorIntegration(pScrn, false, true);
    14041404#ifdef SET_HAVE_VT_PROPERTY
    14051405    updateHasVTProperty(pScrn, TRUE);
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette