mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-05 07:38:22 +02:00
Fixes needed to compile libic on x86_64. Many thanks to David R Bacon <dbacon@cis.ksu.edu>.
This commit is contained in:
parent
f27af5d98d
commit
75ced44ae0
3 changed files with 8 additions and 2 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2003-11-17 Carl Worth <cworth@isi.edu>
|
||||
|
||||
* src/icutil.c (icStipple1Bits):
|
||||
* src/icrop.h (IcStipple16Bits): Fixes needed to compile libic on
|
||||
x86_64. Many thanks to David R Bacon <dbacon@cis.ksu.edu>.
|
||||
|
||||
2003-11-06 Carl Worth <cworth@east.isi.edu>
|
||||
|
||||
* configure.in: Bump version to 0.1.4 just to mark removal of the
|
||||
|
|
|
|||
|
|
@ -100,7 +100,7 @@ extern const IcMergeRopRec IcMergeRopBits[16] __internal_linkage;
|
|||
/* half of table */
|
||||
extern const IcBits icStipple16Bits[256] __internal_linkage;
|
||||
#define IcStipple16Bits(b) \
|
||||
(IcStipple16Bits[(b)&0xff] | IcStipple16Bits[(b) >> 8] << IC_HALFUNIT)
|
||||
(icStipple16Bits[(b)&0xff] | icStipple16Bits[(b) >> 8] << IC_HALFUNIT)
|
||||
|
||||
extern const IcBits * __internal_linkage
|
||||
IcStippleTable(int bits);
|
||||
|
|
|
|||
|
|
@ -266,7 +266,7 @@ static const IcBits icStipple4Bits[16] = {
|
|||
static const IcBits icStipple2Bits[4] = {
|
||||
C2( 0,32), C2( 1,32), C2( 2,32), C2( 3,32),
|
||||
};
|
||||
#define IcStipple1Bits 0
|
||||
#define icStipple1Bits 0
|
||||
#endif
|
||||
|
||||
const IcBits *
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue