From 6a32a96d8df184c3ace4847beb48fdcb846d2286 Mon Sep 17 00:00:00 2001 From: Aaron Plattner Date: Thu, 16 Aug 2007 17:43:29 -0700 Subject: stride is in FbBits-sized chunks, but xoff is not. Fixes corruption problems with composite rendering to redirected windows in depth 16. --- fb/fbpict.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'fb') diff --git a/fb/fbpict.c b/fb/fbpict.c index 4d1ad0b10..8a146ddaa 100644 --- a/fb/fbpict.c +++ b/fb/fbpict.c @@ -291,9 +291,9 @@ create_bits_picture (PicturePtr pict, pixman_image_t *image; fbGetDrawable (pict->pDrawable, bits, stride, bpp, xoff, yoff); - - bits += yoff * stride + xoff; - + + bits = (CARD8*)bits + yoff * stride * sizeof(FbBits) + xoff * (bpp / 8); + image = pixman_image_create_bits ( pict->format, pict->pDrawable->width, pict->pDrawable->height, -- cgit v1.2.3