diff options
Diffstat (limited to 'components/shared/webrender/rendering_context.rs')
-rw-r--r-- | components/shared/webrender/rendering_context.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/shared/webrender/rendering_context.rs b/components/shared/webrender/rendering_context.rs index 96aa4cb32ee..c9f4057fd58 100644 --- a/components/shared/webrender/rendering_context.rs +++ b/components/shared/webrender/rendering_context.rs @@ -169,7 +169,7 @@ impl RenderingContext { /// Invoke a closure with the surface associated with the current front buffer. /// This can be used to create a surfman::SurfaceTexture to blit elsewhere. - pub fn with_front_buffer<F: FnMut(&Device, Surface) -> Surface>(&self, mut f: F) { + pub fn with_front_buffer<F: FnOnce(&Device, Surface) -> Surface>(&self, f: F) { let device = &mut self.0.device.borrow_mut(); let context = &mut self.0.context.borrow_mut(); let surface = device |