Skip to content

Commit

Permalink
properly update bind group ids when setting dynamic bindings. (#560)
Browse files Browse the repository at this point in the history
  • Loading branch information
cart authored Sep 23, 2020
1 parent 028a22b commit a768bae
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions crates/bevy_render/src/pipeline/pipeline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ impl PipelineDescriptor {
if !dynamic_bindings.is_empty() {
// set binding uniforms to dynamic if render resource bindings use dynamic
for bind_group in layout.bind_groups.iter_mut() {
let mut binding_changed = false;
for binding in bind_group.bindings.iter_mut() {
let current = DynamicBinding {
bind_group: bind_group.index,
Expand All @@ -164,9 +165,14 @@ impl PipelineDescriptor {
} = binding.bind_type
{
*dynamic = true;
binding_changed = true;
}
}
}

if binding_changed {
bind_group.update_id();
}
}
}

Expand Down

0 comments on commit a768bae

Please sign in to comment.