Skip to content

Commit

Permalink
fix(rpict): Error in -features OutputCS support string
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregungory committed Apr 8, 2024
1 parent 2d52959 commit 18895bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/rt/rpmain.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef lint
static const char RCSid[] = "$Id: rpmain.c,v 2.32 2024/04/05 16:41:17 greg Exp $";
static const char RCSid[] = "$Id: rpmain.c,v 2.33 2024/04/08 17:08:15 greg Exp $";
#endif
/*
* rpmain.c - main for rpict batch rendering program
Expand Down Expand Up @@ -67,15 +67,15 @@ static void printdefaults(void);
"PixelJitter\nPixelSampling\nPixelMotion\nPixelDepthOfField\n" \
"SmallSourceDrawing\nViewSequence\nProgressReporting\n" \
"AdaptiveShadowTesting\nOutputs=v,l\n" \
"OutputCS=RGB,XYZ,Y,S,M,prims\n"
"OutputCS=RGB,XYZ,prims\n"
#else
#define RPICT_FEATURES "Recovery\nIrradianceCalc\nViewTypes=v,l,a,h,s,c\n" \
"ParticipatingMedia=Mist\n" \
"HessianAmbientCache\nAmbientAveraging\nAmbientValueSharing\n" \
"PixelJitter\nPixelSampling\nPixelMotion\nPixelDepthOfField\n" \
"SmallSourceDrawing\nViewSequence\nProgressReporting\n" \
"AdaptiveShadowTesting\nOutputs=v,l\n" \
"OutputCS=RGB,XYZ,Y,S,M,prims\n"
"OutputCS=RGB,XYZ,prims\n"
#endif


Expand Down

0 comments on commit 18895bd

Please # to comment.