Changeset 49420 in vbox for trunk/src/VBox/Devices/Graphics/DevVGA.h
- Timestamp:
- Nov 8, 2013 3:54:02 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.h
r45808 r49420 64 64 #endif /* VBOX_WITH_HGSMI */ 65 65 #include "DevVGASavedState.h" 66 67 # include <iprt/list.h> 66 68 67 69 #define MSR_COLOR_EMULATION 0x01 … … 196 198 #endif 197 199 200 #ifdef VBOX_WITH_VIDEOHWACCEL 201 #define VBOX_VHWA_MAX_PENDING_COMMANDS 1000 202 203 typedef struct _VBOX_VHWA_PENDINGCMD 204 { 205 RTLISTNODE Node; 206 PVBOXVHWACMD pCommand; 207 } VBOX_VHWA_PENDINGCMD; 208 #endif 209 198 210 typedef struct VGAState { 199 211 #ifndef VBOX … … 420 432 # endif 421 433 # endif /* VBOX_WITH_HGSMI */ 434 435 struct { 436 uint32_t cPending; 437 uint32_t Padding1; 438 union 439 { 440 RTLISTNODE PendingList; 441 /* make sure the structure sized cross different contexts correctly */ 442 struct 443 { 444 R3PTRTYPE(void *) dummy1; 445 R3PTRTYPE(void *) dummy2; 446 } dummy; 447 }; 448 } pendingVhwaCommands; 422 449 #endif /* VBOX */ 423 450 } VGAState; … … 496 523 int vbvaVHWAReset (PVGASTATE pVGAState); 497 524 525 void vbvaTimerCb(PVGASTATE pVGAState); 526 498 527 int vboxVBVASaveStatePrep (PPDMDEVINS pDevIns, PSSMHANDLE pSSM); 499 528 int vboxVBVASaveStateDone (PPDMDEVINS pDevIns, PSSMHANDLE pSSM);
Note:
See TracChangeset
for help on using the changeset viewer.