diff options
author | Andreas Grois <andi@grois.info> | 2018-03-15 08:35:32 +0100 |
---|---|---|
committer | Andreas Grois <andi@grois.info> | 2018-03-15 08:35:32 +0100 |
commit | 85e8b5336debbbe7a88a8016ba8922e06386de21 (patch) | |
tree | 7339addcd96c56075902fdc83cffb7de464d1c2b /BuddhaTest/src | |
parent | 598e425e2bb50586c9aec400308727aa1075f69b (diff) |
Prevent even more waiting by storing a more complete state
Diffstat (limited to 'BuddhaTest/src')
-rw-r--r-- | BuddhaTest/src/Helpers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BuddhaTest/src/Helpers.cpp b/BuddhaTest/src/Helpers.cpp index 5197421..02cc309 100644 --- a/BuddhaTest/src/Helpers.cpp +++ b/BuddhaTest/src/Helpers.cpp @@ -363,7 +363,7 @@ namespace Helpers "--globalWorkgroupSizeX [integer] : How often the local work group should be invoked per frame. Values up to 65535 are guaranteed to work. Default is 1024." << std::endl <<
"--globalWorkgroupSizeY [integer] : How often the local work group should be invoked per frame. Values up to 65535 are guaranteed to work. Default is 1." << std::endl <<
"--globalWorkgroupSizeZ [integer] : How often the local work group should be invoked per frame. Values up to 65535 are guaranteed to work. Default is 1." << std::endl <<
- "--iterationsPerFrame [integer] : Limit how many iteration steps the shader may make per frame. Use this to keep the desktop responsive while rendering high iteration count images. Default: 1000." << std::endl <<
+ "--iterationsPerFrame [integer] : Limit how many iteration steps the shader may make per frame. Use this to keep the desktop responsive while rendering high iteration count images. Default: 10." << std::endl <<
"--ignoreMaxBufferSize [0,1] : If set to 1, a failed maximum buffer size check is not treated as error. Some graphics drivers report lower values than their absolute limit. Do this on your own risk, though." << std::endl;
return false;
}
|