| 287 |
|
} |
| 288 |
|
return; |
| 289 |
|
memerr: |
| 290 |
< |
quit("out of memory"); |
| 290 |
> |
quiterr("out of memory"); |
| 291 |
|
} |
| 292 |
|
|
| 293 |
|
|
| 407 |
|
XFeep(0); |
| 408 |
|
return(-1); |
| 409 |
|
} |
| 410 |
< |
viewray(rorg, rdir, &ourview, (ekey->x-xoff+.5)/xmax, |
| 411 |
< |
(ymax-1-ekey->y+yoff+.5)/ymax); |
| 410 |
> |
if (viewray(rorg, rdir, &ourview, (ekey->x-xoff+.5)/xmax, |
| 411 |
> |
(ymax-1-ekey->y+yoff+.5)/ymax) < 0) |
| 412 |
> |
return(-1); |
| 413 |
|
printf("%e %e %e ", rorg[0], rorg[1], rorg[2]); |
| 414 |
|
printf("%e %e %e\n", rdir[0], rdir[1], rdir[2]); |
| 415 |
|
fflush(stdout); |
| 543 |
|
register unsigned short *dp; |
| 544 |
|
register int x, err; |
| 545 |
|
int y; |
| 546 |
< |
rgbpixel *inline; |
| 546 |
> |
rgbpixel *inl; |
| 547 |
|
short *cerr; |
| 548 |
|
|
| 549 |
< |
if ((inline = (rgbpixel *)malloc(xmax*sizeof(rgbpixel))) == NULL |
| 549 |
> |
if ((inl = (rgbpixel *)malloc(xmax*sizeof(rgbpixel))) == NULL |
| 550 |
|
|| (cerr = (short *)calloc(xmax,sizeof(short))) == NULL) |
| 551 |
< |
quit("out of memory in getmono"); |
| 551 |
> |
quiterr("out of memory in getmono"); |
| 552 |
|
dp = ourras->data.m - 1; |
| 553 |
|
for (y = 0; y < ymax; y++) { |
| 554 |
< |
picreadline3(y, inline); |
| 554 |
> |
picreadline3(y, inl); |
| 555 |
|
err = 0; |
| 556 |
|
for (x = 0; x < xmax; x++) { |
| 557 |
|
if (!(x&0xf)) |
| 558 |
|
*++dp = 0; |
| 559 |
< |
err += rgb_bright(&inline[x]) + cerr[x]; |
| 559 |
> |
err += rgb_bright(&inl[x]) + cerr[x]; |
| 560 |
|
if (err > 127) |
| 561 |
|
err -= 255; |
| 562 |
|
else |
| 564 |
|
cerr[x] = err >>= 1; |
| 565 |
|
} |
| 566 |
|
} |
| 567 |
< |
free((char *)inline); |
| 567 |
> |
free((char *)inl); |
| 568 |
|
free((char *)cerr); |
| 569 |
|
} |
| 570 |
|
|
| 635 |
|
if (scanpos == NULL || scanpos[y] == -1) |
| 636 |
|
return(-1); |
| 637 |
|
if (fseek(fin, scanpos[y], 0) == -1) |
| 638 |
< |
quit("fseek error"); |
| 638 |
> |
quiterr("fseek error"); |
| 639 |
|
cury = y; |
| 640 |
|
} else if (scanpos != NULL) |
| 641 |
|
scanpos[y] = ftell(fin); |