diff --git a/rtiow/src/renderer.rs b/rtiow/src/renderer.rs index a351c00..3a4867b 100644 --- a/rtiow/src/renderer.rs +++ b/rtiow/src/renderer.rs @@ -478,7 +478,7 @@ fn render_worker( Ok(req) => match req { Request::Line { width, y } => { trace!("tid {} width {} y {}", tid, width, y); - let batch = true; + let batch = false; if batch { let (pixels, rays): (Vec, Vec) = (0..width) .map(|x| render_pixel(scene, x, y))