diff options
| author | Charles.Forsyth <devnull@localhost> | 2007-01-15 21:04:26 +0000 |
|---|---|---|
| committer | Charles.Forsyth <devnull@localhost> | 2007-01-15 21:04:26 +0000 |
| commit | 8911721efbf3b3721376e2baa30bae002c2975c2 (patch) | |
| tree | aa059ffa39c2c4f1cd5ed2e137dcb9b079de2717 /include/draw.h | |
| parent | 0e96539ff7cff23233d3f0a64bb285b385a3a1f4 (diff) | |
20070115
Diffstat (limited to 'include/draw.h')
| -rw-r--r-- | include/draw.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/draw.h b/include/draw.h index 2815653f..ee700549 100644 --- a/include/draw.h +++ b/include/draw.h @@ -118,6 +118,9 @@ enum { RGBA32 = CHAN4(CRed, 8, CGreen, 8, CBlue, 8, CAlpha, 8), ARGB32 = CHAN4(CAlpha, 8, CRed, 8, CGreen, 8, CBlue, 8), /* stupid VGAs */ XRGB32 = CHAN4(CIgnore, 8, CRed, 8, CGreen, 8, CBlue, 8), + BGR24 = CHAN3(CBlue, 8, CGreen, 8, CRed, 8), + ABGR32 = CHAN4(CAlpha, 8, CBlue, 8, CGreen, 8, CRed, 8), + XBGR32 = CHAN4(CIgnore, 8, CBlue, 8, CGreen, 8, CRed, 8), }; /* compositing operators */ |
