summaryrefslogtreecommitdiff
path: root/client/src/renderer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/renderer.rs')
-rw-r--r--client/src/renderer.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/renderer.rs b/client/src/renderer.rs
index 2684ed0..02859a1 100644
--- a/client/src/renderer.rs
+++ b/client/src/renderer.rs
@@ -92,12 +92,13 @@ impl<'a> Renderer<'a> {
let device = Arc::new(device);
let queue = Arc::new(queue);
- let (scene_pipeline, texture_bgl) =
+ let (scene_pipeline, texture_bgl, material_bgl) =
ScenePipeline::new(&device, surface_configuration.format);
let scene_prepare = Arc::new(ScenePreparer::new(
device.clone(),
queue.clone(),
texture_bgl,
+ material_bgl,
));
let ui_renderer =