summaryrefslogtreecommitdiff
path: root/fb
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2007-08-16 17:43:29 -0700
committerAaron Plattner <aplattner@nvidia.com>2007-08-16 17:43:29 -0700
commit6a32a96d8df184c3ace4847beb48fdcb846d2286 (patch)
tree509fb3bd8617bcf5b0f0cf60ac399e4d64c7fced /fb
parent32666d77227fcd2c066de16bf3c07366f92b0457 (diff)
stride is in FbBits-sized chunks, but xoff is not.
Fixes corruption problems with composite rendering to redirected windows in depth 16.
Diffstat (limited to 'fb')
-rw-r--r--fb/fbpict.c6
1 files changed, 3 insertions, 3 deletions
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,