Skip to content

Commit 1045d64

Browse files
author
Sebastien Bourdeauducq
committedMar 25, 2013
framebuffer: RGBA -> ARGB
1 parent 8ee6dab commit 1045d64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎milkymist/framebuffer/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
_bpp = 32
1414
_bpc = 10
1515
_pixel_layout = [
16+
("pad", _bpp-3*_bpc),
1617
("r", _bpc),
1718
("g", _bpc),
18-
("b", _bpc),
19-
("pad", _bpp-3*_bpc)
19+
("b", _bpc)
2020
]
2121

2222
_bpc_dac = 8

0 commit comments

Comments
 (0)
Please sign in to comment.