Changeset 13424 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Oct 21, 2008 9:45:46 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38184
- Location:
- trunk/src/VBox/Devices/Graphics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r13422 r13424 4506 4506 PDMIDISPLAYCONNECTOR Connector; 4507 4507 int32_t graphic_mode; 4508 uint32_tfRenderVRAM;4508 bool fRenderVRAM; 4509 4509 size_t cbRequired; 4510 4510 PVGASTATE pThis = IDISPLAYPORT_2_VGASTATE(pInterface); -
trunk/src/VBox/Devices/Graphics/DevVGA.h
r13422 r13424 264 264 /** Flag indicating that the VGA memory in the 0xa0000-0xbffff region has been remapped to allow direct access. */ 265 265 bool fRemappedVGA; 266 bool padding9[3]; 266 /** Whether to render the guest VRAM to the framebuffer memory. False only for some LFB modes. */ 267 bool fRenderVRAM; 268 bool padding9[2]; 267 269 268 270 /** Pointer to vgaGCLFBAccessHandler(). */ … … 289 291 /** Current refresh timer interval. */ 290 292 uint32_t cMilliesRefreshInterval; 291 292 /** Whether to render the guest VRAM to the framebuffer memory. False only for some LFB modes. */293 uint32_t fRenderVRAM;294 293 295 294 /** The PCI device. */
Note:
See TracChangeset
for help on using the changeset viewer.