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)
|
main (void)
|
||||||
{
|
{
|
||||||
// setup the output buffer
|
// setup the output buffer
|
||||||
|
#if ENABLE_DEBUGGING
|
||||||
|
util::extent2u size {320, 240};
|
||||||
|
#else
|
||||||
util::extent2u size {1920, 1080};
|
util::extent2u size {1920, 1080};
|
||||||
|
#endif
|
||||||
util::image::buffer<float> img (size);
|
util::image::buffer<float> img (size);
|
||||||
|
|
||||||
uint64_t seed = time (nullptr);
|
uint64_t seed = time (nullptr);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user