Changeset 50497 in vbox
- Timestamp:
- Feb 18, 2014 2:58:28 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 92338
- Location:
- trunk/src/VBox/Devices/Graphics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r50259 r50497 5379 5379 { 5380 5380 PVGASTATE pThis = PDMINS_2_DATA(pDevIns, PVGASTATE); 5381 5381 5382 #ifdef VBOX_WITH_VDMA 5382 5383 vboxVDMASaveStateExecPrep(pThis->pVdma, pSSM); 5383 5384 #endif 5385 5384 5386 vgaR3SaveConfig(pThis, pSSM); 5385 5387 vga_save(pSSM, PDMINS_2_DATA(pDevIns, PVGASTATE)); 5388 5386 5389 #ifdef VBOX_WITH_HGSMI 5387 5390 SSMR3PutBool(pSSM, true); … … 5390 5393 vboxVDMASaveStateExecDone(pThis->pVdma, pSSM); 5391 5394 # endif 5392 return rc;5393 5395 #else 5394 SSMR3PutBool(pSSM, false);5396 int rc = SSMR3PutBool(pSSM, false); 5395 5397 #endif 5398 5396 5399 #ifdef VBOX_WITH_VMSVGA 5397 5400 if ( rc == VINF_SUCCESS … … 5399 5402 rc = vmsvgaSaveExec(pDevIns, pSSM); 5400 5403 #endif 5404 5401 5405 return rc; 5402 5406 } -
trunk/src/VBox/Devices/Graphics/DevVGASavedState.h
r49983 r50497 8 8 9 9 /* 10 * Copyright (C) 2006-201 3Oracle Corporation10 * Copyright (C) 2006-2014 Oracle Corporation 11 11 * 12 12 * This file is part of VirtualBox Open Source Edition (OSE), as … … 23 23 #define Graphics_DevVGASavedState_h 24 24 25 #ifdef VBOX_WITH_VMSVGA 25 #define VGA_SAVEDSTATE_VERSION 11 26 #define VGA_SAVEDSTATE_VERSION_VMSVGA 11 26 27 #define VGA_SAVEDSTATE_VERSION_VMSVGA_2D 10 /* <- internal build with 2d state only */ 27 #define VGA_SAVEDSTATE_VERSION_VMSVGA 1128 #define VGA_SAVEDSTATE_VERSION 1129 #else30 #define VGA_SAVEDSTATE_VERSION 1031 #endif32 28 #define VGA_SAVEDSTATE_VERSION_WITH_PENDVHWA 10 33 29 #define VGA_SAVEDSTATE_VERSION_INV_GCMDFIFO 8 /* <- states upto and including this version may contain invalid completed Guest Commands fifo entries */ … … 42 38 43 39 #endif 44
Note:
See TracChangeset
for help on using the changeset viewer.