From 8911721efbf3b3721376e2baa30bae002c2975c2 Mon Sep 17 00:00:00 2001 From: "Charles.Forsyth" Date: Mon, 15 Jan 2007 21:04:26 +0000 Subject: 20070115 --- include/draw.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/draw.h') 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 */ -- cgit v1.2.3