ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/psign.c
(Generate patch)

Comparing ray/src/px/psign.c (file contents):
Revision 2.19 by schorsch, Thu Jun 5 19:29:34 2003 UTC vs.
Revision 2.21 by greg, Sat Jun 21 15:05:01 2003 UTC

# Line 8 | Line 8 | static const char      RCSid[] = "$Id$";
8   */
9  
10   #include  "standard.h"
11 + #include  "platform.h"
12   #include  "color.h"
13   #include  "font.h"
14  
# Line 32 | Line 33 | int  cwidth;                           /* computed character width */
33   unsigned char  *ourbitmap;              /* our output bitmap */
34   int  xsiz, ysiz;                        /* bitmap dimensions */
35   int  xdim;                              /* size of horizontal scan (bytes) */
36 +
37 +                                /* conflicting def's in param.h */
38 + #undef  tstbit
39 + #undef  setbit
40 + #undef  clrbit
41 + #undef  tglbit
42  
43   #define  bitop(x,y,op)          (ourbitmap[(y)*xdim+((x)>>3)] op (1<<((x)&7)))
44   #define  tstbit(x,y)            bitop(x,y,&)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines