Author: gadamopoulos Date: Mon Jul 11 12:59:21 2011 New Revision: 52631
URL: http://svn.reactos.org/svn/reactos?rev=52631&view=rev Log: [win32k] -Add a hack to GreStretchBltMask to return TRUE when a dimension is 0. After some investigation it seems that windows returns TRUE in such a case but couldn't investigate more if this change is really correct. This hack is needed because a drawing operation in uxtheme is aborted when StretchBlt returns FALSE
Modified: branches/GSoC_2011/ThemesSupport/subsystems/win32/win32k/objects/bitblt.c
Modified: branches/GSoC_2011/ThemesSupport/subsystems/win32/win32k/objects/bitblt.c URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/ThemesSupport/subsyste... ============================================================================== --- branches/GSoC_2011/ThemesSupport/subsystems/win32/win32k/objects/bitblt.c [iso-8859-1] (original) +++ branches/GSoC_2011/ThemesSupport/subsystems/win32/win32k/objects/bitblt.c [iso-8859-1] Mon Jul 11 12:59:21 2011 @@ -660,7 +660,7 @@ if (0 == WidthDest || 0 == HeightDest || 0 == WidthSrc || 0 == HeightSrc) { EngSetLastError(ERROR_INVALID_PARAMETER); - return FALSE; + return TRUE; }
DPRINT("Locking DCs\n");