- Timestamp:
- May 4, 2010 1:44:55 PM (15 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/crOpenGL/stub.c
r28294 r29017 457 457 * In (!pWindow->pVisibleRegions && cRects) "&& cRects" is a workaround for that case, especially as this 458 458 * information is useless for full screen composing managers anyway. 459 * If this is changed, make sure to change crVBoxServerLoadState accordingly. 459 460 */ 460 461 if ((!pWindow->pVisibleRegions && cRects) -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_main.c
r28534 r29017 872 872 crServerDispatchWindowSize(key, muralInfo.width, muralInfo.height); 873 873 crServerDispatchWindowPosition(key, muralInfo.gX, muralInfo.gY); 874 crServerDispatchWindowVisibleRegion(key, muralInfo.cVisibleRects, muralInfo.pVisibleRects); 874 /* Same workaround as described in stub.c:stubUpdateWindowVisibileRegions for compiz on a freshly booted VM*/ 875 if (muralInfo.cVisibleRects) 876 { 877 crServerDispatchWindowVisibleRegion(key, muralInfo.cVisibleRects, muralInfo.pVisibleRects); 878 } 879 crServerDispatchWindowShow(key, muralInfo.bVisible); 875 880 876 881 if (muralInfo.pVisibleRects)
Note:
See TracChangeset
for help on using the changeset viewer.