- Timestamp:
- Apr 19, 2007 9:21:32 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/DisplayImpl.cpp
r2200 r2206 250 250 */ 251 251 bool f = ASMAtomicCmpXchgU32 (&mu32ResizeStatus, ResizeStatus_InProgress, ResizeStatus_Void); 252 AssertRelease (f);NOREF(f);252 AssertReleaseMsg(f, ("f = %d\n", f));NOREF(f); 253 253 254 254 /* The framebuffer is locked in the state. … … 301 301 /* Unlock framebuffer. */ 302 302 mFramebuffer->Unlock(); 303 304 /* Repaint the display. */305 mpDrv->pUpPort->pfnUpdateDisplayAll(mpDrv->pUpPort);306 303 } 307 304 … … 325 322 bool f = ASMAtomicCmpXchgU32 (&mu32ResizeStatus, ResizeStatus_Void, ResizeStatus_UpdateDisplayData); 326 323 AssertRelease(f);NOREF(f); 324 325 /* Repaint the display. This could lead to a new call to handleDisplayResize, so do this after the status change. */ 326 mpDrv->pUpPort->pfnUpdateDisplayAll(mpDrv->pUpPort); 327 327 } 328 328
Note:
See TracChangeset
for help on using the changeset viewer.