Changeset 9212 in vbox for trunk/src/VBox/Devices/Graphics
- Timestamp:
- May 29, 2008 9:38:38 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 31380
- Location:
- trunk/src/VBox/Devices/Graphics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r8642 r9212 5231 5231 AssertMsgRC(rc, ("PDMDevHlpMMIO2Register(%#x,) -> %Rrc\n", pData->vram_size, rc)); 5232 5232 5233 rc = PDMDevHlpMMHyperMapMMIO2(pDevIns, 0 /* iRegion */, 0 /* off */, VGA_MAPPING_SIZE, "VGA VRam", &pData->vram_ptrGC); 5233 RTGCPTR pGCMapping = 0; 5234 rc = PDMDevHlpMMHyperMapMMIO2(pDevIns, 0 /* iRegion */, 0 /* off */, VGA_MAPPING_SIZE, "VGA VRam", &pGCMapping); 5234 5235 AssertMsgRC(rc, ("MMR3HyperMapGCPhys(%#x,) -> %Rrc\n", pData->vram_size, rc)); 5236 Assert(!(pGCMapping >> 32ULL)); 5237 pData->vram_ptrGC = pGCMapping; 5235 5238 5236 5239 /* -
trunk/src/VBox/Devices/Graphics/DevVGA.h
r8155 r9212 251 251 RTGCPHYS32 GCPhysVRAM; 252 252 /** Pointer to GC vram mapping. */ 253 GCPTRTYPE(uint8_t *) vram_ptrGC;253 RCPTRTYPE(uint8_t *) vram_ptrGC; 254 254 /** @todo r=bird: bool not RTUINT (my fault I guess). */ 255 255 /** LFB was updated flag. */ … … 260 260 RTUINT fR0Enabled; 261 261 /** Pointer to vgaGCLFBAccessHandler(). */ 262 RTGCPTR 262 RTGCPTR32 GCPtrLFBHandler; 263 263 /** Flag indicating that there are dirty bits. This is used to optimize the handler resetting. */ 264 264 bool fHaveDirtyBits; … … 268 268 R3R0PTRTYPE(PPDMDEVINS) pDevInsHC; 269 269 /* * Pointer to the device instance - GC Ptr. */ 270 /* GCPTRTYPE(PPDMDEVINS) pDevInsGC;*/270 /*RCPTRTYPE(PPDMDEVINS) pDevInsGC;*/ 271 271 272 272 /** The display port base interface. */
Note:
See TracChangeset
for help on using the changeset viewer.