VirtualBox

Changeset 76261 in vbox for trunk/src


Ignore:
Timestamp:
Dec 17, 2018 1:52:33 PM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
127533
Message:

DevVGA-SVGA3d: no need to resize the opengl window, it is not used for presenting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-ogl.cpp

    r76255 r76261  
    32523252static void vmsvga3dChangeModeOneContext(PVGASTATE pThis, PVMSVGA3DSTATE pState, PVMSVGA3DCONTEXT pContext)
    32533253{
    3254 #ifdef RT_OS_WINDOWS
    32553254    RT_NOREF3(pThis, pState, pContext);
    32563255    /* Do nothing. The window is not used for presenting. */
    3257 
    3258 #elif defined(RT_OS_DARWIN)
    3259     /** @todo No overlay like on Windows. */
    3260     VMSVGASCREENOBJECT *pScreen = vmsvgaGetScreenObject(pThis, 0);
    3261     uint32_t const uWidth  = pScreen ? pScreen->cWidth : -1;
    3262     uint32_t const uHeight = pScreen ? pScreen->cHeight: -1;
    3263 
    3264     RT_NOREF(pState);
    3265     vmsvga3dCocoaViewSetSize(pContext->cocoaView, uWidth, uHeight);
    3266 
    3267 #elif defined(RT_OS_LINUX)
    3268     /** @todo No overlay like on Windows. */
    3269     VMSVGASCREENOBJECT *pScreen = vmsvgaGetScreenObject(pThis, 0);
    3270     uint32_t const uWidth  = pScreen ? pScreen->cWidth : -1;
    3271     uint32_t const uHeight = pScreen ? pScreen->cHeight: -1;
    3272 
    3273     XWindowChanges wc;
    3274     wc.width = uWidth;
    3275     wc.height = uHeight;
    3276     XConfigureWindow(pState->display, pContext->window, CWWidth | CWHeight, &wc);
    3277 #endif
    32783256}
    32793257
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