Skip to content

Commit

Permalink
Misc
Browse files Browse the repository at this point in the history
  • Loading branch information
JMS55 committed Oct 24, 2023
1 parent 3453478 commit 321dce1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/bevy_pbr/src/material.rs
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ pub fn queue_material_meshes<M: Material>(
&material_pipeline,
MaterialPipelineKey {
mesh_key,
for_meshlet_mesh: todo!(),
for_meshlet_mesh: false,
bind_group_data: material.key.clone(),
},
&mesh.layout,
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_pbr/src/prepass/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ pub fn queue_prepass_material_meshes<M: Material>(
&prepass_pipeline,
MaterialPipelineKey {
mesh_key,
for_meshlet_mesh: todo!(),
for_meshlet_mesh: false,
bind_group_data: material.key.clone(),
},
&mesh.layout,
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_pbr/src/render/light.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1634,7 +1634,7 @@ pub fn queue_shadows<M: Material>(
&prepass_pipeline,
MaterialPipelineKey {
mesh_key,
for_meshlet_mesh: todo!(),
for_meshlet_mesh: false,
bind_group_data: material.key.clone(),
},
&mesh.layout,
Expand Down

0 comments on commit 321dce1

Please sign in to comment.