Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
cart committed Dec 1, 2020
1 parent 56053f6 commit e194eaa
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ impl RenderResourceBindings {
}
} else {
// unmatched bind group descriptors might now match
self.bind_group_descriptors.retain(|_, value| value.is_some());
self.bind_group_descriptors
.retain(|_, value| value.is_some());
}
}

Expand Down Expand Up @@ -164,7 +165,7 @@ impl RenderResourceBindings {
}
BindGroupStatus::Unchanged(id) => {
// PERF: this is only required because RenderResourceContext::remove_stale_bind_groups doesn't inform RenderResourceBindings
// when a stale bind group has been removed
// when a stale bind group has been removed
let bind_group = self
.get_bind_group(id)
.expect("RenderResourceSet was just changed, so it should exist");
Expand Down

0 comments on commit e194eaa

Please sign in to comment.