IntEngGradientFill: fix cleanup when calling the driver

svn path=/trunk/; revision=33996
This commit is contained in:
Timo Kreuzer 2008-06-16 18:56:52 +00:00
parent 2e105930d6
commit 8594831504

View file

@ -571,11 +571,12 @@ IntEngGradientFill(
Ret = GDIDEVFUNCS(psoDest).GradientFill( Ret = GDIDEVFUNCS(psoDest).GradientFill(
psoDest, pco, pxlo, pVertex, nVertex, pMesh, nMesh, psoDest, pco, pxlo, pVertex, nVertex, pMesh, nMesh,
prclExtents, pptlDitherOrg, ulMode); prclExtents, pptlDitherOrg, ulMode);
MouseSafetyOnDrawEnd(psoDest);
return Ret;
} }
Ret = EngGradientFill(psoDest, pco, pxlo, pVertex, nVertex, pMesh, nMesh, prclExtents, else
pptlDitherOrg, ulMode); {
Ret = EngGradientFill(psoDest, pco, pxlo, pVertex, nVertex, pMesh, nMesh, prclExtents,
pptlDitherOrg, ulMode);
}
MouseSafetyOnDrawEnd(psoDest); MouseSafetyOnDrawEnd(psoDest);
BITMAPOBJ_UnlockBitmapBits(pboDest); BITMAPOBJ_UnlockBitmapBits(pboDest);