From 546465ee6aa6584780aec6357f32d205c807ae71 Mon Sep 17 00:00:00 2001 From: Soren Sandmann Pedersen Date: Wed, 16 May 2007 17:42:04 -0400 Subject: [PATCH] Make fbFetch_b8g8r8() actually write the read value to the buffer --- fb/fbcompose.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fb/fbcompose.c b/fb/fbcompose.c index dd2a2f0b5..465f7d343 100644 --- a/fb/fbcompose.c +++ b/fb/fbcompose.c @@ -180,6 +180,7 @@ fbFetch_b8g8r8 (const FbBits *bits, int x, int width, CARD32 *buffer, miIndexedP b |= (READ(pixel++) << 8); b |= (READ(pixel++)); #endif + WRITE(buffer++, b); } }