| 1 |
– |
/* Copyright (c) 1999 Silicon Graphics, Inc. */ |
| 2 |
– |
|
| 1 |
|
#ifndef lint |
| 2 |
< |
static char SCCSid[] = "$SunId$ SGI"; |
| 2 |
> |
static const char RCSid[] = "$Id$"; |
| 3 |
|
#endif |
| 6 |
– |
|
| 4 |
|
/* |
| 5 |
|
* Radiance holodeck picture generator |
| 6 |
|
*/ |
| 7 |
|
|
| 8 |
|
#include "rholo.h" |
| 9 |
|
#include "view.h" |
| 13 |
– |
#include "resolu.h" |
| 10 |
|
|
| 11 |
|
char *progname; /* our program name */ |
| 12 |
|
char *hdkfile; /* holodeck file name */ |
| 143 |
|
/* render image */ |
| 144 |
|
if (blist.nb > 0) { |
| 145 |
|
render_frame(blist.bl, blist.nb); |
| 146 |
< |
free((char *)blist.bl); |
| 146 |
> |
free((void *)blist.bl); |
| 147 |
|
} else { |
| 148 |
|
sprintf(errmsg, "no section visible in frame %d", fn); |
| 149 |
|
error(WARNING, errmsg); |
| 180 |
|
} |
| 181 |
|
hdloadbeams(bil, nb, pixBeam); |
| 182 |
|
pixFinish(randfrac); |
| 183 |
< |
free((char *)bil); |
| 183 |
> |
free((void *)bil); |
| 184 |
|
} |
| 185 |
|
|
| 186 |
|
|
| 260 |
|
|
| 261 |
|
initialize() /* initialize holodeck and buffers */ |
| 262 |
|
{ |
| 267 |
– |
extern long ftell(); |
| 263 |
|
int fd; |
| 264 |
|
FILE *fp; |
| 265 |
|
int n; |
| 281 |
|
fd = dup(fileno(fp)); /* dup file descriptor */ |
| 282 |
|
fclose(fp); /* done with stdio */ |
| 283 |
|
for (n = 0; nextloc > 0L; n++) { /* initialize each section */ |
| 284 |
< |
lseek(fd, (long)nextloc, 0); |
| 284 |
> |
lseek(fd, (off_t)nextloc, 0); |
| 285 |
|
read(fd, (char *)&nextloc, sizeof(nextloc)); |
| 286 |
|
hdinit(fd, NULL); |
| 287 |
|
} |
| 294 |
|
} |
| 295 |
|
|
| 296 |
|
|
| 297 |
+ |
void |
| 298 |
|
eputs(s) /* put error message to stderr */ |
| 299 |
|
register char *s; |
| 300 |
|
{ |