Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
framebuffer: RGBA -> ARGB
  • Loading branch information
Sebastien Bourdeauducq committed Mar 25, 2013
1 parent 8ee6dab commit 1045d64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions milkymist/framebuffer/__init__.py
Expand Up @@ -13,10 +13,10 @@
_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
Expand Down

0 comments on commit 1045d64

Please sign in to comment.