Merge pull request #86 from Smithay/fix/glium_borrow_mut
[glium] Remove unnecessary mutable self reference for borrowing
This commit is contained in:
commit
f927d98720
|
@ -72,7 +72,7 @@ impl<T: EGLGraphicsBackend + 'static> GliumGraphicsBackend<T> {
|
||||||
/// Holding any other borrow while trying to borrow the backend
|
/// Holding any other borrow while trying to borrow the backend
|
||||||
/// mutably will panic. Note that glium will borrow the backend
|
/// mutably will panic. Note that glium will borrow the backend
|
||||||
/// (not mutably) during rendering.
|
/// (not mutably) during rendering.
|
||||||
pub fn borrow_mut(&mut self) -> RefMut<T> {
|
pub fn borrow_mut(&self) -> RefMut<T> {
|
||||||
self.backend.0.borrow_mut()
|
self.backend.0.borrow_mut()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue