diff options
Diffstat (limited to '')
-rw-r--r-- | graphics/src/layer.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/src/layer.rs b/graphics/src/layer.rs index 93506258..af545713 100644 --- a/graphics/src/layer.rs +++ b/graphics/src/layer.rs @@ -202,7 +202,7 @@ impl<'a> Layer<'a> { Self::process_primitive( layers, translation + *new_translation, - &content, + content, current_layer, ); } @@ -210,7 +210,7 @@ impl<'a> Layer<'a> { Self::process_primitive( layers, translation, - &cache, + cache, current_layer, ); } |