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

Comparing ray/src/px/panim.c (file contents):
Revision 1.8 by greg, Thu Apr 18 14:35:15 1991 UTC vs.
Revision 2.3 by schorsch, Mon Jun 30 14:59:12 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1988 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  Send pictures to PC animation system.
6   *
# Line 11 | Line 8 | static char SCCSid[] = "$SunId$ LBL";
8   */
9  
10   #include <stdio.h>
11 + #include <string.h>
12  
13   #include "random.h"
14   #include "color.h"
# Line 118 | Line 116 | char   *file;
116          xbeg = (SCANLINE-xres)/2;
117          ybeg = (NUMSCANS-yres)/2;
118                                                  /* clear output */
119 <        bzero(sc_frame_arr, sizeof(sc_frame_arr));
119 >        memset(sc_frame_arr, '\0', sizeof(sc_frame_arr));
120                                                  /* get frame */
121          for (y = yres-1; y >= 0; y--) {
122                  if (freadcolrs(scanin, xres, fp) < 0) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines