xserver/render picture.c,1.43,1.44

Lars Knoll <xserver-commit-u7BhqnqprCWvj1b/[email protected]> Fri, 1 Jul 2005 01:17:28 -0700 (PDT)
Newsgroups gmane.comp.freedesktop.xserver.cvs
Message-ID <[email protected]>
Committed by: lars

Update of /cvs/xserver/xserver/render
In directory gabe:/tmp/cvs-serv7622/render

Modified Files:
	picture.c 
Log Message:
use premulitplied colors for CreateSolidFill.


Index: picture.c
===================================================================
RCS file: /cvs/xserver/xserver/render/picture.c,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- picture.c	29 Jun 2005 15:14:17 -0000	1.43
+++ picture.c	1 Jul 2005 08:17:26 -0000	1.44
@@ -946,7 +946,7 @@
         return 0;
     }
     pPicture->pSourcePict->type = SourcePictTypeSolidFill;
-    pPicture->pSourcePict->solidFill.color = premultiply(xRenderColorToCard32(*color));
+    pPicture->pSourcePict->solidFill.color = xRenderColorToCard32(*color);
     return pPicture;
 }