Use pixman_private consistently as prefix not suffix

This commit is contained in:
Alfred Peng 2006-09-29 17:17:27 -07:00 committed by Carl Worth
parent c1495742f7
commit 34d11aa3c4
2 changed files with 3 additions and 3 deletions

View file

@ -985,7 +985,7 @@ typedef struct _PictFormat *PictFormatPtr;
#define PictureCmapPolicyColor 3
#define PictureCmapPolicyAll 4
extern int PictureCmapPolicy pixman_private;
extern pixman_private int PictureCmapPolicy;
int PictureParseCmapPolicy (const char *name);

View file

@ -29,7 +29,7 @@ typedef struct _mergeRopBits {
FbBits ca1, cx1, ca2, cx2;
} FbMergeRopRec, *FbMergeRopPtr;
extern const FbMergeRopRec FbMergeRopBits[16] pixman_private;
extern pixman_private const FbMergeRopRec FbMergeRopBits[16];
#define FbDeclareMergeRop() FbBits _ca1, _cx1, _ca2, _cx2;
#define FbDeclarePrebuiltMergeRop() FbBits _cca, _ccx;
@ -98,7 +98,7 @@ extern const FbMergeRopRec FbMergeRopBits[16] pixman_private;
*/
/* half of table */
extern const pixman_bits_t fbStipple16Bits[256] pixman_private;
extern pixman_private const pixman_bits_t fbStipple16Bits[256];
#define FbStipple16Bits(b) \
(fbStipple16Bits[(b)&0xff] | fbStipple16Bits[(b) >> 8] << FB_HALFUNIT)