mirror of
https://github.com/reactos/reactos.git
synced 2025-07-04 20:31:25 +00:00
Initialize DC with BLACK_PEN
svn path=/trunk/; revision=4445
This commit is contained in:
parent
58ce5de527
commit
c338b7de02
1 changed files with 2 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: dc.c,v 1.55 2003/03/27 23:17:22 gvg Exp $
|
/* $Id: dc.c,v 1.56 2003/03/28 15:27:02 gvg Exp $
|
||||||
*
|
*
|
||||||
* DC.C - Device context functions
|
* DC.C - Device context functions
|
||||||
*
|
*
|
||||||
|
@ -1324,10 +1324,9 @@ HDC DC_FindOpenDC(LPCWSTR Driver)
|
||||||
void DC_InitDC(HDC DCHandle)
|
void DC_InitDC(HDC DCHandle)
|
||||||
{
|
{
|
||||||
// W32kRealizeDefaultPalette(DCHandle);
|
// W32kRealizeDefaultPalette(DCHandle);
|
||||||
//W32kSelectObject(DCHandle, W32kGetStockObject( BLACK_PEN ));
|
|
||||||
|
|
||||||
W32kSelectObject(DCHandle, W32kGetStockObject( WHITE_BRUSH ));
|
W32kSelectObject(DCHandle, W32kGetStockObject( WHITE_BRUSH ));
|
||||||
//W32kSelectObject(DCHandle, hPen);
|
W32kSelectObject(DCHandle, W32kGetStockObject( BLACK_PEN ));
|
||||||
//W32kSelectObject(DCHandle, hFont);
|
//W32kSelectObject(DCHandle, hFont);
|
||||||
|
|
||||||
// CLIPPING_UpdateGCRegion(DCToInit);
|
// CLIPPING_UpdateGCRegion(DCToInit);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue