qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] Fix color problems with sdl on bgr displays
@ 2007-10-14 13:52 Avi Kivity
  2007-10-14 14:27 ` Blue Swirl
  0 siblings, 1 reply; 3+ messages in thread
From: Avi Kivity @ 2007-10-14 13:52 UTC (permalink / raw)
  To: qemu-devel; +Cc: kvm-devel

[-- Attachment #1: Type: text/plain, Size: 356 bytes --]

Some kvm users complained that the blue and red channels are flipped on 
their displays.  Reverting sdl.c rev 1.40 fixed that problem, so 
apparently that commit made the problem larger than it was previously.

Attached a patch the removes the commit and fixes the problem.  Please 
apply.

-- 
error compiling committee.c: too many arguments to function


[-- Attachment #2: sdl-bgr.patch --]
[-- Type: text/x-patch, Size: 552 bytes --]

Index: sdl.c
===================================================================
RCS file: /sources/qemu/qemu/sdl.c,v
retrieving revision 1.44
diff -u -r1.44 sdl.c
--- sdl.c	17 Sep 2007 08:09:45 -0000	1.44
+++ sdl.c	14 Oct 2007 13:49:37 -0000
@@ -87,7 +87,7 @@
     ds->data = screen->pixels;
     ds->linesize = screen->pitch;
     ds->depth = screen->format->BitsPerPixel;
-    if (screen->format->Bshift > screen->format->Rshift) {
+    if (ds->depth == 32 && screen->format->Rshift == 0) {
         ds->bgr = 1;
     } else {
         ds->bgr = 0;

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-10-14 14:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-14 13:52 [Qemu-devel] [PATCH] Fix color problems with sdl on bgr displays Avi Kivity
2007-10-14 14:27 ` Blue Swirl
2007-10-14 14:36   ` [kvm-devel] " Avi Kivity

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).