Changeset 67558 in vbox
- Timestamp:
- Jun 22, 2017 10:04:45 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 116307
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPVidPn.cpp
r64878 r67558 556 556 if (!NT_SUCCESS(Status)) 557 557 { 558 WARN(("pfnAddMode failed, Status 0x%x", Status));558 WARN(("pfnAddMode (%d x %d) failed, Status 0x%x", size.cx, size.cy, Status)); 559 559 VBoxVidPnDumpSourceMode("SourceMode: ", pVidPnModeInfo, "\n"); 560 560 NTSTATUS rcNt2 = pVidPnModeSetInterface->pfnReleaseModeInfo(hVidPnModeSet, pVidPnModeInfo); 561 561 AssertNtStatusSuccess(rcNt2); 562 return Status; 562 // Continue adding modes into modeset even if a mode was rejected 563 continue; 563 564 } 564 565 } … … 616 617 if (!NT_SUCCESS(Status)) 617 618 { 618 WARN(("pfnAddMode failed, Status 0x%x", Status));619 WARN(("pfnAddMode (%d x %d) failed, Status 0x%x", size.cx, size.cy, Status)); 619 620 VBoxVidPnDumpTargetMode("TargetMode: ", pVidPnModeInfo, "\n"); 620 621 NTSTATUS rcNt2 = pVidPnModeSetInterface->pfnReleaseModeInfo(hVidPnModeSet, pVidPnModeInfo); 621 622 AssertNtStatusSuccess(rcNt2); 622 return Status; 623 // Continue adding modes into modeset even if a mode was rejected 624 continue; 623 625 } 624 626 } … … 679 681 NTSTATUS rcNt2 = pVidPnModeSetInterface->pfnReleaseModeInfo(hVidPnModeSet, pVidPnModeInfo); 680 682 AssertNtStatusSuccess(rcNt2); 683 // Continue adding modes into modeset even if a mode was rejected 681 684 continue; 682 685 }
Note:
See TracChangeset
for help on using the changeset viewer.