| 54 |
|
static void init_frame_sample(void); |
| 55 |
|
|
| 56 |
|
|
| 57 |
+ |
#if 0 |
| 58 |
|
extern void |
| 59 |
|
write_map( /* write out float map (debugging) */ |
| 60 |
|
float *mp, |
| 80 |
|
} |
| 81 |
|
fclose(fp); |
| 82 |
|
} |
| 83 |
+ |
#endif |
| 84 |
|
|
| 85 |
|
|
| 86 |
|
static void |
| 666 |
|
restart = (!nobjects || vdef(MOVE)); |
| 667 |
|
if (!restart && curparams != &lorendparams && nprocs > 1) |
| 668 |
|
restart = -1; |
| 667 |
– |
if (restart > 0) { |
| 668 |
– |
if (nprocs > 1) |
| 669 |
– |
ray_pdone(0); |
| 670 |
– |
else |
| 671 |
– |
ray_done(0); |
| 672 |
– |
} |
| 669 |
|
/* post low quality parameters */ |
| 670 |
|
if (curparams != &lorendparams) |
| 671 |
|
ray_restore(curparams = &lorendparams); |
| 697 |
|
init_frame_sample(); |
| 698 |
|
/* initialize frame error */ |
| 699 |
|
comp_frame_error(); |
| 700 |
< |
return; |
| 700 |
> |
#if 0 |
| 701 |
|
{ |
| 702 |
|
float *ebuf = (float *)malloc(sizeof(float)*hres*vres); |
| 703 |
|
char fnm[256]; |
| 709 |
|
write_map(ebuf, fnm); |
| 710 |
|
free((void *)ebuf); |
| 711 |
|
} |
| 712 |
+ |
#endif |
| 713 |
|
} |
| 714 |
|
|
| 715 |
|
|