Author: tkreuzer
Date: Sat Aug 8 02:50:42 2009
New Revision: 42487
URL:
http://svn.reactos.org/svn/reactos?rev=42487&view=rev
Log:
Update the fill brush, in NtGdiFillPath.
Modified:
trunk/reactos/subsystems/win32/win32k/objects/path.c
Modified: trunk/reactos/subsystems/win32/win32k/objects/path.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/ob…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/objects/path.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/objects/path.c [iso-8859-1] Sat Aug 8 02:50:42
2009
@@ -2298,6 +2298,9 @@
if (pdcattr->ulDirty_ & (DIRTY_LINE | DC_PEN_DIRTY))
DC_vUpdateLineBrush(dc);
+ if (pdcattr->ulDirty_ & (DIRTY_FILL | DC_BRUSH_DIRTY))
+ DC_vUpdateFillBrush(dc);
+
ret = PATH_FillPath( dc, pPath );
if ( ret )
{