Fix some of the 4 bit per channel PICT definitions

Patch from Billy Biggs <vektor@dumbterm.net>.
This commit is contained in:
Jeff Muizelaar 2005-08-05 12:14:12 +00:00
parent 2b20b7a230
commit 3ef2488265
2 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2005-08-05 Jeff Muizelaar <jeff@infidigm.net>
* src/icint.h: Fix some of the 4 bit per channel PICT definitions
Patch from Billy Biggs <vektor@dumbterm.net>.
2005-08-05 Jeff Muizelaar <jeff@infidigm.net>
* src/ic.c: (fbCompositeSolidMask_nx8x8888),

View file

@ -929,9 +929,9 @@ typedef struct _PictFormat *PictFormatPtr;
#define PICT_a1b5g5r5 PICT_FORMAT(16,PICT_TYPE_ABGR,1,5,5,5)
#define PICT_x1b5g5r5 PICT_FORMAT(16,PICT_TYPE_ABGR,0,5,5,5)
#define PICT_a4r4g4b4 PICT_FORMAT(16,PICT_TYPE_ARGB,4,4,4,4)
#define PICT_x4r4g4b4 PICT_FORMAT(16,PICT_TYPE_ARGB,4,4,4,4)
#define PICT_a4b4g4r4 PICT_FORMAT(16,PICT_TYPE_ARGB,4,4,4,4)
#define PICT_x4b4g4r4 PICT_FORMAT(16,PICT_TYPE_ARGB,4,4,4,4)
#define PICT_x4r4g4b4 PICT_FORMAT(16,PICT_TYPE_ARGB,0,4,4,4)
#define PICT_a4b4g4r4 PICT_FORMAT(16,PICT_TYPE_ABGR,4,4,4,4)
#define PICT_x4b4g4r4 PICT_FORMAT(16,PICT_TYPE_ABGR,0,4,4,4)
/* 8bpp formats */
#define PICT_a8 PICT_FORMAT(8,PICT_TYPE_A,8,0,0,0)