diff options
Diffstat (limited to 'client/src/renderer.rs')
-rw-r--r-- | client/src/renderer.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/renderer.rs b/client/src/renderer.rs index 6a37320..2684ed0 100644 --- a/client/src/renderer.rs +++ b/client/src/renderer.rs @@ -119,7 +119,8 @@ impl<'a> Renderer<'a> { }); let depth = depth.create_view(&TextureViewDescriptor::default()); - for _ in 0..2 { + // TODO multithreading introduces double-loading some resources. fix that before increasing thread count + for _ in 0..1 { let scene_prepare = scene_prepare.clone(); let downloader = downloader.clone(); spawn(move || { |