Setup drawing default to CCW not CW.

svn path=/trunk/; revision=34229
This commit is contained in:
James Tabor
2008-07-01 05:24:58 +00:00
parent 5f35dd6071
commit 8aec8d2388
+1 -1
View File
@@ -840,7 +840,7 @@ IntGdiCreateDC(PUNICODE_STRING Driver,
NewDC->erclWindow.top = NewDC->erclWindow.left = 0;
NewDC->erclWindow.right = ((PGDIDEVICE)NewDC->pPDev)->GDIInfo.ulHorzRes;
NewDC->erclWindow.bottom = ((PGDIDEVICE)NewDC->pPDev)->GDIInfo.ulVertRes;
NewDC->DcLevel.flPath = DCPATH_CLOCKWISE;
NewDC->DcLevel.flPath &= ~DCPATH_CLOCKWISE; // Default is CCW.
DC_UnlockDc( NewDC );