noise-tool: lower output resolution for debug
debugging can be slow with all runtime checks enabled
This commit is contained in:
parent
cbe6f68c4b
commit
c826822a43
@ -23,7 +23,11 @@ int
|
||||
main (void)
|
||||
{
|
||||
// setup the output buffer
|
||||
#if ENABLE_DEBUGGING
|
||||
util::extent2u size {320, 240};
|
||||
#else
|
||||
util::extent2u size {1920, 1080};
|
||||
#endif
|
||||
util::image::buffer<float> img (size);
|
||||
|
||||
uint64_t seed = time (nullptr);
|
||||
|
Loading…
Reference in New Issue
Block a user