mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-04-30 23:47:59 +02:00
Restore extern tag for variable declarations, (accidentally removed when recently removing extern from function prototypes).
This commit is contained in:
parent
a850136805
commit
dc0d812f6c
3 changed files with 9 additions and 2 deletions
|
|
@ -1,3 +1,10 @@
|
|||
2005-01-07 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* src/icrop.h:
|
||||
* src/icint.h: Restore extern tag for variable declarations,
|
||||
(accidentally removed when recently removing extern from function
|
||||
prototypes).
|
||||
|
||||
2005-01-04 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* src/ic.c (pixman_composite): Do nothing if src image has width
|
||||
|
|
|
|||
|
|
@ -968,7 +968,7 @@ typedef struct _Picture *PicturePtr;
|
|||
#define PictureCmapPolicyColor 3
|
||||
#define PictureCmapPolicyAll 4
|
||||
|
||||
pixman_private int PictureCmapPolicy;
|
||||
extern int PictureCmapPolicy pixman_private;
|
||||
|
||||
int PictureParseCmapPolicy (const char *name);
|
||||
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@ extern const IcMergeRopRec IcMergeRopBits[16] pixman_private;
|
|||
*/
|
||||
|
||||
/* half of table */
|
||||
pixman_private const pixman_bits_t icStipple16Bits[256];
|
||||
extern const pixman_bits_t icStipple16Bits[256] pixman_private;
|
||||
#define IcStipple16Bits(b) \
|
||||
(icStipple16Bits[(b)&0xff] | icStipple16Bits[(b) >> 8] << IC_HALFUNIT)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue