noise-tool: lower output resolution for debug

debugging can be slow with all runtime checks enabled
This commit is contained in:
Danny Robson 2015-06-03 17:37:42 +10:00
parent cbe6f68c4b
commit c826822a43

View File

@ -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);