notaz.gp2x.de
/
sdl_omap.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f77a25
)
fix alpha for 32bpp screen
author
notaz
<notasas@gmail.com>
Sat, 17 Dec 2011 21:33:15 +0000
(23:33 +0200)
committer
notaz
<notasas@gmail.com>
Sat, 17 Dec 2011 21:33:15 +0000
(23:33 +0200)
those bits are ignored by hw, tell SDL there is no alpha.
src/video/omapdss/sdlif.c
patch
|
blob
|
blame
|
history
diff --git
a/src/video/omapdss/sdlif.c
b/src/video/omapdss/sdlif.c
index
1d682fb
..
409876a
100644
(file)
--- a/
src/video/omapdss/sdlif.c
+++ b/
src/video/omapdss/sdlif.c
@@
-108,7
+108,7
@@
static SDL_Surface *omap_SetVideoMode(SDL_VideoDevice *this, SDL_Surface *curren
format = SDL_ReallocFormat(current, 24, 0xff0000, 0xff00, 0xff, 0);
break;
case 32:
- format = SDL_ReallocFormat(current, 32, 0xff0000, 0xff00, 0xff, 0
xff000000
);
+ format = SDL_ReallocFormat(current, 32, 0xff0000, 0xff00, 0xff, 0);
break;
default:
err("SetVideoMode: bpp %d not supported", bpp);