--- ray/src/common/image.c 2003/09/07 05:32:02 2.21 +++ ray/src/common/image.c 2004/01/01 19:47:05 2.25 @@ -1,5 +1,5 @@ #ifndef lint -static const char RCSid[] = "$Id: image.c,v 2.21 2003/09/07 05:32:02 greg Exp $"; +static const char RCSid[] = "$Id: image.c,v 2.25 2004/01/01 19:47:05 greg Exp $"; #endif /* * image.c - routines for image generation. @@ -9,11 +9,9 @@ static const char RCSid[] = "$Id: image.c,v 2.21 2003/ #include "copyright.h" -#include "standard.h" - +#include "rtio.h" #include "view.h" -#include "paths.h" #define FEQ(x,y) (fabs((x)-(y)) <= FTINY) #define VEQ(v,w) (FEQ((v)[0],(w)[0]) && FEQ((v)[1],(w)[1]) \ @@ -492,7 +490,7 @@ int isview(s) /* is this a view string? */ char *s; { - static char *altname[]={NULL,VIEWSTR,"rpict","rview","pinterp",NULL}; + static char *altname[]={NULL,VIEWSTR,"rpict","rview","rvu","rpiece","pinterp",NULL}; extern char *progname; register char *cp; register char **an;