summaryrefslogtreecommitdiff
path: root/sdl.c
diff options
context:
space:
mode:
authoraliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162>2009-01-15 22:07:16 +0000
committeraliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162>2009-01-15 22:07:16 +0000
commit8927bcfd339510deedb89ff274ea9cd1d00a2668 (patch)
tree2a23e99e3cc6cdef2f5d2b18f4a35fac44645f73 /sdl.c
parentreport issues causing the kvm probe to fail (Christian Ehrhardt) (diff)
downloadqemu-kvm-8927bcfd339510deedb89ff274ea9cd1d00a2668.tar.gz
qemu-kvm-8927bcfd339510deedb89ff274ea9cd1d00a2668.tar.bz2
qemu-kvm-8927bcfd339510deedb89ff274ea9cd1d00a2668.zip
remove bgr (Stefano Stabellini)
Do not handle bgr host displays in the backends. Right now a bgr flag exists so that sdl can set it, if the SDL_Surface is bgr. Afterwards the graphic device (e.g. vga.c) does the needed conversion. With this patch series is sdl that is responsible for rendering the format provided by the graphic device that must provide a DisplaySurface (ds->surface) in 16 or 32 bpp, rgb. Afterwards sdl creates a SDL_Surface from the given DisplaySurface and blits it into the main SDL_Surface using SDL_BlitSurface. Everything is handled by sdl transparently, because SDL_BlitSurface is perfectly capable of handling bgr displays by itself. Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6335 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'sdl.c')
-rw-r--r--sdl.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/sdl.c b/sdl.c
index 2ce6e8152..67aba76bd 100644
--- a/sdl.c
+++ b/sdl.c
@@ -100,11 +100,6 @@ static void sdl_resize(DisplayState *ds, int w, int h)
if ((mask & 0x8000) == 0)
ds->depth = 15;
}
- if (ds->depth == 32 && screen->format->Rshift == 0) {
- ds->bgr = 1;
- } else {
- ds->bgr = 0;
- }
ds->width = w;
ds->height = h;
}