framebuffer: RGBA -> ARGB

This commit is contained in:
Sebastien Bourdeauducq 2013-03-25 18:32:25 +01:00
parent 8ee6dab4f9
commit 1045d64e6e
1 changed files with 2 additions and 2 deletions

View File

@ -13,10 +13,10 @@ _vbits = 11
_bpp = 32 _bpp = 32
_bpc = 10 _bpc = 10
_pixel_layout = [ _pixel_layout = [
("pad", _bpp-3*_bpc),
("r", _bpc), ("r", _bpc),
("g", _bpc), ("g", _bpc),
("b", _bpc), ("b", _bpc)
("pad", _bpp-3*_bpc)
] ]
_bpc_dac = 8 _bpc_dac = 8