diff options
author | Andreas Grois <andi@grois.info> | 2018-03-11 13:16:57 +0100 |
---|---|---|
committer | Andreas Grois <andi@grois.info> | 2018-03-11 13:16:57 +0100 |
commit | a486b4fc93448400529e69cd973d0297ed9cfcbe (patch) | |
tree | 4a435e5899d1b6ea7d6bac5acba3857c1f51ad33 | |
parent | 71689f4c1c047e6837891667f6ecfd03a9508863 (diff) |
Clarify help output regarding image size
-rw-r--r-- | BuddhaTest/src/Helpers.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BuddhaTest/src/Helpers.cpp b/BuddhaTest/src/Helpers.cpp index e6aa635..a5e9364 100644 --- a/BuddhaTest/src/Helpers.cpp +++ b/BuddhaTest/src/Helpers.cpp @@ -344,8 +344,8 @@ namespace Helpers std::cout << "Draws a buddhabrot and iterates until the user closes the window. If a --output filename is given, a png file will afterwards be written there." <<std::endl <<
"Supported options are:" << std::endl << std::endl <<
"--output [path] : File to write output to. Empty by default, meaning no output is written." << std::endl <<
- "--imageWidth [integer] : Width of the to be written image. 1024 by default. Ignored if no --output is given." << std::endl <<
- "--imageHeight [integer] : Height of the to be written image. 576 by default. Ignored if no --output is given." << std::endl <<
+ "--imageWidth [integer] : Width of the to be written image. 1024 by default. If no --output is given, this still detrmines the buffer size for rendering." << std::endl <<
+ "--imageHeight [integer] : Height of the to be written image. 576 by default. If no --output is given, this still detrmines the buffer size for rendering." << std::endl <<
"--imageGamma [float] : Gamma to use when writing the image. 1.0 by default. Ignored if no --output is given." << std::endl <<
"--imageColorScale [float] : Image brightness is scaled by the brightest pixel. The result is multiplied by this value. 2.0 by default, as 1.0 leaves very little dynamic range." << std::endl <<
"--windowWidth [integer] : Width of the preview window. 1024 by default." << std::endl <<
|