From 372e631a833c3d61b03804c3184359002b1861f3 Mon Sep 17 00:00:00 2001 From: Alfred Peng Date: Fri, 29 Sep 2006 17:17:27 -0700 Subject: [PATCH] Use pixman_private consistently as prefix not suffix (cherry picked from 34d11aa3c45ba672b34d0a17f672f907305f3893 commit) --- pixman/src/icint.h | 2 +- pixman/src/icrop.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pixman/src/icint.h b/pixman/src/icint.h index a489bb7b4..17b13b491 100644 --- a/pixman/src/icint.h +++ b/pixman/src/icint.h @@ -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); diff --git a/pixman/src/icrop.h b/pixman/src/icrop.h index 4e6ac82dc..99fc8e542 100644 --- a/pixman/src/icrop.h +++ b/pixman/src/icrop.h @@ -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)