tadd ABGR32 - plan9port - [fork] Plan 9 from user space
HTML git clone git://src.adamsgaard.dk/plan9port
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 32bb6c879450f715f10b88b181a8da04ca04831b
DIR parent cae9bfe9da0a9d46554940c127fb2a022f1360f6
HTML Author: rsc <devnull@localhost>
Date: Tue, 15 Feb 2005 05:03:28 +0000
add ABGR32
Diffstat:
M include/draw.h | 1 +
1 file changed, 1 insertion(+), 0 deletions(-)
---
DIR diff --git a/include/draw.h b/include/draw.h
t@@ -138,6 +138,7 @@ enum {
BGR24 = CHAN3(CBlue, 8, CGreen, 8, CRed, 8),
RGBA32 = CHAN4(CRed, 8, CGreen, 8, CBlue, 8, CAlpha, 8),
ARGB32 = CHAN4(CAlpha, 8, CRed, 8, CGreen, 8, CBlue, 8), /* stupid VGAs */
+ ABGR32 = CHAN4(CAlpha, 8, CBlue, 8, CGreen, 8, CRed, 8),
XRGB32 = CHAN4(CIgnore, 8, CRed, 8, CGreen, 8, CBlue, 8),
XBGR32 = CHAN4(CIgnore, 8, CBlue, 8, CGreen, 8, CRed, 8),
};