Changeset 15877 in vbox for trunk/src/VBox
- Timestamp:
- Jan 8, 2009 5:46:05 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r15876 r15877 2436 2436 VGAState *s = vga_state; 2437 2437 #else /* VBOX */ 2438 static int vga_update_display(PVGASTATE s )2438 static int vga_update_display(PVGASTATE s, bool fUpdateAll) 2439 2439 { 2440 2440 int rc = VINF_SUCCESS; … … 2470 2470 2471 2471 #ifdef VBOX 2472 if ( s->graphic_mode == -1) {2472 if (fUpdateAll) { 2473 2473 /* A full update is requested. Special processing for a "blank" mode is required. */ 2474 2474 typedef DECLCALLBACK(void) FNUPDATERECT(PPDMIDISPLAYCONNECTOR pInterface, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy); … … 4565 4565 /* This should be called only in non VBVA mode. */ 4566 4566 4567 int rc = vga_update_display(pThis );4567 int rc = vga_update_display(pThis, false); 4568 4568 if (rc != VINF_SUCCESS) 4569 4569 return rc; … … 4604 4604 pThis->graphic_mode = -1; /* force full update */ 4605 4605 4606 int rc = vga_update_display(pThis );4606 int rc = vga_update_display(pThis, true); 4607 4607 4608 4608 /* The dirty bits array has been just cleared, reset handlers as well. */ … … 4721 4721 4722 4722 /* make the snapshot. */ 4723 int rc = vga_update_display(pThis );4723 int rc = vga_update_display(pThis, false); 4724 4724 4725 4725 /* restore */
Note:
See TracChangeset
for help on using the changeset viewer.