Changeset 7045 in vbox for trunk/src/VBox/Devices/Graphics
- Timestamp:
- Feb 20, 2008 3:30:19 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.h
r7026 r7045 244 244 /** end-of-common-state-marker */ 245 245 uint32_t u32Marker; 246 /** Pointer to GC vram mapping. */ 247 GCPTRTYPE(uint8_t *) vram_ptrGC; 246 248 /** The physical address the VRAM was assigned. */ 247 249 RTGCPHYS GCPhysVRAM; 248 /** Pointer to GC vram mapping. */249 GCPTRTYPE(uint8_t *) vram_ptrGC;250 /** @todo r=bird: bool not RTUINT (my fault I guess). */251 250 /** LFB was updated flag. */ 252 RTUINTfLFBUpdated;251 bool fLFBUpdated; 253 252 /** Indicates if the GC extensions are enabled or not. */ 254 RTUINTfGCEnabled;253 bool fGCEnabled; 255 254 /** Indicates if the R0 extensions are enabled or not. */ 256 RTUINT fR0Enabled; 255 bool fR0Enabled; 256 /** Flag indicating that there are dirty bits. This is used to optimize the handler resetting. */ 257 bool fHaveDirtyBits; 257 258 /** Pointer to vgaGCLFBAccessHandler(). */ 258 259 RTGCPTR GCPtrLFBHandler; 259 /** Flag indicating that there are dirty bits. This is used to optimize the handler resetting. */260 bool fHaveDirtyBits;261 260 /** Bitmap tracking dirty pages. */ 262 261 uint32_t au32DirtyBitmap[VGA_VRAM_MAX / PAGE_SIZE / 32];
Note:
See TracChangeset
for help on using the changeset viewer.