From 693a7a6dc386d504e0ed48c4391a057db39bae15 Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Wed, 21 Dec 2011 16:20:41 -0500 Subject: [PATCH] Go back to smaller dither radius factor --- cuburn/code/iter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cuburn/code/iter.py b/cuburn/code/iter.py index 7659c9a..c5b8486 100644 --- a/cuburn/code/iter.py +++ b/cuburn/code/iter.py @@ -204,7 +204,7 @@ void iter( {{precalc_camera(pcp.camera)}} if (threadIdx.y == 5 && threadIdx.x == 4) { - float ditherwidth = {{pcp.camera.dither_width}} * 0.5f; + float ditherwidth = {{pcp.camera.dither_width}} * 0.33f; float u0 = mwc_next_01(rctx); float r = ditherwidth * sqrtf(-2.0f * log2f(u0) / M_LOG2E);