diff options
author | metamuffin <metamuffin@disroot.org> | 2025-01-21 22:59:01 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-01-21 22:59:01 +0100 |
commit | a3621790a6f4466daab0f38f5eaf57fe064b2e92 (patch) | |
tree | cb4d6ef53a65abdd87969cbbf6ad4c9a54b54225 /client/src/renderer.rs | |
parent | 12bf2f3302efc9042f12ca17104928c35700c229 (diff) | |
download | weareserver-a3621790a6f4466daab0f38f5eaf57fe064b2e92.tar weareserver-a3621790a6f4466daab0f38f5eaf57fe064b2e92.tar.bz2 weareserver-a3621790a6f4466daab0f38f5eaf57fe064b2e92.tar.zst |
more work on armature
Diffstat (limited to 'client/src/renderer.rs')
-rw-r--r-- | client/src/renderer.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/client/src/renderer.rs b/client/src/renderer.rs index 02859a1..e655420 100644 --- a/client/src/renderer.rs +++ b/client/src/renderer.rs @@ -92,13 +92,11 @@ impl<'a> Renderer<'a> { let device = Arc::new(device); let queue = Arc::new(queue); - let (scene_pipeline, texture_bgl, material_bgl) = - ScenePipeline::new(&device, surface_configuration.format); + let (scene_pipeline, layouts) = ScenePipeline::new(&device, surface_configuration.format); let scene_prepare = Arc::new(ScenePreparer::new( device.clone(), queue.clone(), - texture_bgl, - material_bgl, + layouts )); let ui_renderer = |