diff options
Diffstat (limited to 'core/src/renderer')
| -rw-r--r-- | core/src/renderer/null.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/renderer/null.rs b/core/src/renderer/null.rs index 1caf71b3..f36d19aa 100644 --- a/core/src/renderer/null.rs +++ b/core/src/renderer/null.rs @@ -10,11 +10,11 @@ use crate::{  use std::borrow::Cow;  impl Renderer for () { -    fn start_layer(&mut self) {} +    fn start_layer(&mut self, _bounds: Rectangle) {}      fn end_layer(&mut self, _bounds: Rectangle) {} -    fn start_transformation(&mut self) {} +    fn start_transformation(&mut self, _transformation: Transformation) {}      fn end_transformation(&mut self, _transformation: Transformation) {}  | 
