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

Comparing ray/src/common/tmapluv.c (file contents):
Revision 3.5 by greg, Tue Feb 25 02:47:22 2003 UTC vs.
Revision 3.6 by schorsch, Mon Jun 30 14:59:11 2003 UTC

# Line 18 | Line 18 | static const char      RCSid[] = "$Id$";
18   #include "tmprivat.h"
19   #include "tmaptiff.h"
20  
21 #ifndef BSD
22 #define bzero(d,n)              (void)memset(d,0,n)
23 #endif
21   #define uvflgop(p,uv,op)        ((p)->rgbflg[(uv)>>5] op (1L<<((uv)&0x1f)))
22   #define isuvset(p,uv)           uvflgop(p,uv,&)
23   #define setuv(p,uv)             uvflgop(p,uv,|=)
24   #define clruv(p,uv)             uvflgop(p,uv,&=~)
25 < #define clruvall(p)             bzero((MEM_PTR)(p)->rgbflg,sizeof((p)->rgbflg))
25 > #define clruvall(p)             memset((MEM_PTR)(p)->rgbflg,'\0',sizeof((p)->rgbflg))
26  
27   #ifdef NOPROTO
28   static MEM_PTR  luv32Init();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines