summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoren Sandmann Pedersen <sandmann@redhat.com>2007-05-16 17:42:04 -0400
committerSoren Sandmann Pedersen <sandmann@redhat.com>2007-05-16 17:42:04 -0400
commit546465ee6aa6584780aec6357f32d205c807ae71 (patch)
treeafb76f77c5e61cafecfef1bcb2d93b74f8ca1d71
parent0fcd17c9181901c419cc32bc24c07fe5a6934d81 (diff)
Make fbFetch_b8g8r8() actually write the read value to the buffer
-rw-r--r--fb/fbcompose.c1
1 files changed, 1 insertions, 0 deletions
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);
}
}