From fa8f7bb9b9ce25ee51d556f6ccdf65e013668062 Mon Sep 17 00:00:00 2001 From: ice_iix Date: Sat, 29 Sep 2018 17:31:16 -0700 Subject: [PATCH] Increase sample count to 2 to fix/workaround rendering issue #74 https://github.com/Thinkofname/steven/issues/74 --- src/render/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/render/mod.rs b/src/render/mod.rs index 9644d5d..1eb9b5e 100644 --- a/src/render/mod.rs +++ b/src/render/mod.rs @@ -42,7 +42,7 @@ use std::sync::mpsc; const ATLAS_SIZE: usize = 1024; // TEMP -const NUM_SAMPLES: i32 = 1; +const NUM_SAMPLES: i32 = 2; pub struct Camera { pub pos: cgmath::Point3,