- Timestamp:
- Sep 22, 2009 3:31:04 PM (15 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Miniport
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/Helper.cpp
r22994 r23221 63 63 BOOLEAN bRC = FALSE; 64 64 65 dprintf(("VBoxVideo::vboxQueryDisplayRequest: xres = %p, yres = %p bpp =%p\n", xres, yres, bpp));65 dprintf(("VBoxVideo::vboxQueryDisplayRequest: xres = 0x%p, yres = 0x%p bpp = 0x%p\n", xres, yres, bpp)); 66 66 67 67 VMMDevDisplayChangeRequest *req = NULL; -
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.cpp
r22549 r23221 553 553 * the Additions service process. The mode table is guaranteed to have 554 554 * two spare entries for this mode (alternating index thus 2). 555 * 556 * ... or ... 557 * 558 * Also we check if we got an user-stored custom resolution in the adapter 559 * registry key add it to the modes table. 555 560 */ 556 561 uint32_t xres, yres, bpp = 0; … … 580 585 yres = DeviceExtension->CurrentModeHeight; 581 586 if (!bpp) 582 {583 587 bpp = DeviceExtension->CurrentModeBPP; 584 }585 588 } 586 589 … … 1340 1343 1341 1344 dprintf(("VBoxVideo: got stored custom resolution %dx%dx%d\n", gCustomXRes, gCustomYRes, gCustomBPP)); 1342 1343 1345 return TRUE; 1344 1346 }
Note:
See TracChangeset
for help on using the changeset viewer.