Changeset 27205 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Mar 9, 2010 11:11:37 AM (15 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Miniport
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/Helper.h
r27201 r27205 88 88 extern bool g_bVBoxVDbgBreakFv; 89 89 #define vboxVDbgBreakF() do { if (g_bVBoxVDbgBreakF) AssertBreakpoint(); } while (0) 90 #define vboxVDbgBreakFv() do { if (g_bVBoxVDbgBreakF ) AssertBreakpoint(); } while (0)90 #define vboxVDbgBreakFv() do { if (g_bVBoxVDbgBreakFv) AssertBreakpoint(); } while (0) 91 91 #else 92 92 #define vboxVDbgBreakF() do { } while (0) -
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.cpp
r27201 r27205 286 286 if (!bFound) 287 287 { 288 Assert(g_VBoxWddmNumResolutions < RT_ELEMENTS(g_VBoxWddmVideoResolutions)); 288 289 g_VBoxWddmVideoResolutions[g_VBoxWddmNumResolutions].cx = pMode->VisScreenWidth; 289 290 g_VBoxWddmVideoResolutions[g_VBoxWddmNumResolutions].cy = pMode->VisScreenHeight; 291 ++g_VBoxWddmNumResolutions; 290 292 } 291 293 } -
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/wddm/VBoxVideoWddm.cpp
r27201 r27205 1060 1060 dfprintf(("==> "__FUNCTION__ ", MiniportDeviceContext(0x%x)\n", MiniportDeviceContext)); 1061 1061 1062 vboxVDbgBreakF ();1062 vboxVDbgBreakFv(); 1063 1063 1064 1064 dfprintf(("<== "__FUNCTION__ ", MiniportDeviceContext(0x%x)\n", MiniportDeviceContext)); … … 1142 1142 { 1143 1143 /* we are requested to provide the number of segments we support */ 1144 pQsOut->NbSegment = 1;1145 } 1146 else if (pQsOut->NbSegment != 1)1144 pQsOut->NbSegment = 2; 1145 } 1146 else if (pQsOut->NbSegment != 2) 1147 1147 { 1148 1148 AssertBreakpoint(); … … 2863 2863 dfprintf(("==> "__FUNCTION__ ", hDevice(0x%x)\n", hDevice)); 2864 2864 2865 AssertBreakpoint();2865 vboxVDbgBreakF(); 2866 2866 2867 2867 NTSTATUS Status = STATUS_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.