mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
framebuffer: RGBA -> ARGB
This commit is contained in:
parent
8ee6dab4f9
commit
1045d64e6e
1 changed files with 2 additions and 2 deletions
|
@ -13,10 +13,10 @@ _vbits = 11
|
|||
_bpp = 32
|
||||
_bpc = 10
|
||||
_pixel_layout = [
|
||||
("pad", _bpp-3*_bpc),
|
||||
("r", _bpc),
|
||||
("g", _bpc),
|
||||
("b", _bpc),
|
||||
("pad", _bpp-3*_bpc)
|
||||
("b", _bpc)
|
||||
]
|
||||
|
||||
_bpc_dac = 8
|
||||
|
|
Loading…
Reference in a new issue