- Timestamp:
- Dec 17, 2018 1:52:33 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127533
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-ogl.cpp
r76255 r76261 3252 3252 static void vmsvga3dChangeModeOneContext(PVGASTATE pThis, PVMSVGA3DSTATE pState, PVMSVGA3DCONTEXT pContext) 3253 3253 { 3254 #ifdef RT_OS_WINDOWS3255 3254 RT_NOREF3(pThis, pState, pContext); 3256 3255 /* 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 #endif3278 3256 } 3279 3257
Note:
See TracChangeset
for help on using the changeset viewer.