From 90f8369894b28cc3cca757a329352fe19943de16 Mon Sep 17 00:00:00 2001
From: Siarhei Siamashka <siarhei.siamashka@nokia.com>
Date: Mon, 20 Apr 2009 16:36:08 +0300
Subject: [PATCH] Removal of unused fbCompositeSrc_8888x0888 function

---
 pixman/pixman-pict.c |   49 -------------------------------------------------
 1 files changed, 0 insertions(+), 49 deletions(-)

diff --git a/pixman/pixman-pict.c b/pixman/pixman-pict.c
index bb1a365..6c6afa8 100644
--- a/pixman/pixman-pict.c
+++ b/pixman/pixman-pict.c
@@ -653,55 +653,6 @@ fbCompositeSrc_8888x8888 (pixman_op_t op,
 }
 
 void
-fbCompositeSrc_8888x0888 (pixman_op_t op,
-			 pixman_image_t * pSrc,
-			 pixman_image_t * pMask,
-			 pixman_image_t * pDst,
-			 int16_t      xSrc,
-			 int16_t      ySrc,
-			 int16_t      xMask,
-			 int16_t      yMask,
-			 int16_t      xDst,
-			 int16_t      yDst,
-			 uint16_t     width,
-			 uint16_t     height)
-{
-    uint8_t	*dstLine, *dst;
-    uint32_t	d;
-    uint32_t	*srcLine, *src, s;
-    uint8_t	a;
-    int	dstStride, srcStride;
-    uint16_t	w;
-
-    fbComposeGetStart (pDst, xDst, yDst, uint8_t, dstStride, dstLine, 3);
-    fbComposeGetStart (pSrc, xSrc, ySrc, uint32_t, srcStride, srcLine, 1);
-
-    while (height--)
-    {
-	dst = dstLine;
-	dstLine += dstStride;
-	src = srcLine;
-	srcLine += srcStride;
-	w = width;
-
-	while (w--)
-	{
-	    s = READ(pSrc, src++);
-	    a = s >> 24;
-	    if (a)
-	    {
-		if (a == 0xff)
-		    d = s;
-		else
-		    d = fbOver24 (s, Fetch24(pDst, dst));
-		Store24(pDst, dst, d);
-	    }
-	    dst += 3;
-	}
-    }
-}
-
-void
 fbCompositeSrc_8888x0565 (pixman_op_t op,
 			 pixman_image_t * pSrc,
 			 pixman_image_t * pMask,
-- 
1.5.6.5

