Skip to content

Commit

Permalink
Clippy police
Browse files Browse the repository at this point in the history
  • Loading branch information
pcwalton committed Dec 17, 2023
1 parent ffe11df commit b30602f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bevy_pbr/src/light_probe/environment_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -375,11 +375,11 @@ impl<'a> RenderViewBindGroupEntries<'a> {
impl<'a> RenderViewBindGroupEntries<'a> {
/// Returns the texture view corresponding to the view's diffuse cubemap.
pub(crate) fn diffuse_texture_views(&self) -> &'a TextureView {
&self.diffuse_texture_view
self.diffuse_texture_view
}

/// Returns the texture view corresponding to the view's specular cubemap.
pub(crate) fn specular_texture_views(&self) -> &'a TextureView {
&self.specular_texture_view
self.specular_texture_view
}
}

0 comments on commit b30602f

Please sign in to comment.