5 |
|
* Compute pixels for glare calculation |
6 |
|
*/ |
7 |
|
|
8 |
+ |
#include "copyright.h" |
9 |
+ |
|
10 |
+ |
#include <string.h> |
11 |
+ |
|
12 |
|
#include "rtprocess.h" /* Windows: must come first because of conflicts */ |
13 |
|
#include "glare.h" |
14 |
|
|
266 |
|
fprintf(stderr, "%s: sending %d samples to rtrace...\n", |
267 |
|
progname, np); |
268 |
|
#endif |
269 |
< |
bzero(pb+6*np, 6*sizeof(float)); |
269 |
> |
memset(pb+6*np, '\0', 6*sizeof(float)); |
270 |
|
if (process(&rt_pd, (char *)pb, (char *)pb, 3*sizeof(float)*(np+1), |
271 |
|
6*sizeof(float)*(np+1)) < 3*sizeof(float)*(np+1)) { |
272 |
|
fprintf(stderr, "%s: rtrace communication error\n", |