儲存庫 vbox 的更動 13429
- 時間撮記:
- 2008-10-21 上午10:02:48 (16 年 以前)
- 位置:
- trunk/src/VBox/Devices/Graphics
- 檔案:
-
- 修改 2 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r13424 r13429 349 349 AssertMsg(offVRAM < pThis->vram_size, ("offVRAM = %p, pThis->vram_size = %p\n", offVRAM, pThis->vram_size)); 350 350 ASMBitSet(&pThis->au32DirtyBitmap[0], offVRAM >> PAGE_SHIFT); 351 pThis->fHa veDirtyBits = true;351 pThis->fHasDirtyBits = true; 352 352 } 353 353 … … 4407 4407 return rc; 4408 4408 4409 if (pThis->fHa veDirtyBits && pThis->GCPhysVRAM && pThis->GCPhysVRAM != NIL_RTGCPHYS32)4409 if (pThis->fHasDirtyBits && pThis->GCPhysVRAM && pThis->GCPhysVRAM != NIL_RTGCPHYS32) 4410 4410 { 4411 4411 PGMHandlerPhysicalReset(PDMDevHlpGetVM(pDevIns), pThis->GCPhysVRAM); 4412 pThis->fHa veDirtyBits = false;4412 pThis->fHasDirtyBits = false; 4413 4413 } 4414 4414 if (pThis->fRemappedVGA) -
trunk/src/VBox/Devices/Graphics/DevVGA.h
r13424 r13429 261 261 bool fR0Enabled; 262 262 /** Flag indicating that there are dirty bits. This is used to optimize the handler resetting. */ 263 bool fHa veDirtyBits;263 bool fHasDirtyBits; 264 264 /** Flag indicating that the VGA memory in the 0xa0000-0xbffff region has been remapped to allow direct access. */ 265 265 bool fRemappedVGA;
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器