diff options
author | Julian T <julian@jtle.dk> | 2020-05-07 12:51:27 +0200 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2020-05-07 12:51:27 +0200 |
commit | ef684a7d2ad2934af872cb19a413c95d1005c4b6 (patch) | |
tree | d79a8405c4af66d90e93e1c333399e0d2ff21c8a /main.c | |
parent | c36cf8faf00ad9c46d7142189f842169d62aed29 (diff) |
Naive path trace. Not working
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -14,7 +14,7 @@ #define PERCENTSTEP (TESTH / 100) -#define WORKERS 4 +#define WORKERS 1 void *worker_func(void *arg); @@ -44,12 +44,12 @@ settings_t gfx_high = { }; settings_t gfx_low = { - .arealight_samples = 16, + .arealight_samples = 4, .envlight_samples = 16, - .antialias_samples = 2, + .antialias_samples = 100, .globallight_samples = 16, .gl_opt_depth = 1, - .depth = 1, + .depth = 16, }; settings_t gfx_very = { |