| 5 |
|
* Make illum sources for optimizing rendering process |
| 6 |
|
*/ |
| 7 |
|
|
| 8 |
– |
#include "mkillum.h" |
| 9 |
– |
|
| 8 |
|
#include <signal.h> |
| 11 |
– |
|
| 9 |
|
#include <ctype.h> |
| 10 |
+ |
#include <stdio.h> |
| 11 |
|
|
| 12 |
+ |
#include "platform.h" |
| 13 |
+ |
#include "mkillum.h" |
| 14 |
+ |
|
| 15 |
|
/* default parameters */ |
| 16 |
|
#define SAMPDENS 48 /* points per projected steradian */ |
| 17 |
|
#define NSAMPS 32 /* samples per point */ |
| 157 |
|
ofun[OBJ_SPHERE].funp = o_sphere; |
| 158 |
|
ofun[OBJ_RING].funp = o_ring; |
| 159 |
|
/* set up signal handling */ |
| 160 |
+ |
#ifndef _WIN32 /* XXX what do we use instead? */ |
| 161 |
|
signal(SIGPIPE, quit); |
| 162 |
+ |
#endif |
| 163 |
|
/* start rtrace process */ |
| 164 |
|
errno = 0; |
| 165 |
|
maxbytes = open_process(rt.pd, rtargv); |