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.20 by schorsch, Sun Jun 8 12:03:10 2003 UTC vs.
Revision 2.21 by greg, Sat Jun 21 15:05:01 2003 UTC

# Line 34 | Line 34 | 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,&)
45   #define  setbit(x,y)            bitop(x,y,|=)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines