Commit in reactos/subsys/win32k/eng on MAIN
transblt.c+5-11.15 -> 1.16
fixed clipping bug in TransparentBlt(). Thanks to Filip for fixing it

reactos/subsys/win32k/eng
transblt.c 1.15 -> 1.16
diff -u -r1.15 -r1.16
--- transblt.c	6 Apr 2004 21:53:48 -0000	1.15
+++ transblt.c	7 Apr 2004 22:17:36 -0000	1.16
@@ -16,7 +16,7 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
-/* $Id: transblt.c,v 1.15 2004/04/06 21:53:48 weiden Exp $
+/* $Id: transblt.c,v 1.16 2004/04/07 22:17:36 weiden Exp $
  * 
  * COPYRIGHT:        See COPYING in the top level directory
  * PROJECT:          ReactOS kernel
@@ -250,6 +250,10 @@
     {
       return TRUE;
     }
+    SourceRect->left += OutputRect.left - DestRect->left;
+    SourceRect->top += OutputRect.top - DestRect->top;
+    SourceRect->right += OutputRect.left - DestRect->left;
+    SourceRect->bottom += OutputRect.top - DestRect->top;
   }
   else
   {
CVSspam 0.2.8