Address Clippy lints
This commit is contained in:
parent
e053e25d2c
commit
15f794b7a8
43 changed files with 147 additions and 172 deletions
|
|
@ -118,7 +118,7 @@ impl Atlas {
|
|||
height,
|
||||
padding,
|
||||
0,
|
||||
&allocation,
|
||||
allocation,
|
||||
encoder,
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,9 +9,6 @@ pub enum Layer {
|
|||
|
||||
impl Layer {
|
||||
pub fn is_empty(&self) -> bool {
|
||||
match self {
|
||||
Layer::Empty => true,
|
||||
_ => false,
|
||||
}
|
||||
matches!(self, Layer::Empty)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ impl Cache {
|
|||
}
|
||||
}
|
||||
image::Data::Bytes(bytes) => {
|
||||
if let Ok(image) = image_rs::load_from_memory(&bytes) {
|
||||
if let Ok(image) = image_rs::load_from_memory(bytes) {
|
||||
let operation =
|
||||
Operation::from_exif(&mut std::io::Cursor::new(bytes))
|
||||
.ok()
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ impl Cache {
|
|||
}
|
||||
svg::Data::Bytes(bytes) => {
|
||||
match usvg::Tree::from_data(
|
||||
&bytes,
|
||||
bytes,
|
||||
&usvg::Options::default().to_ref(),
|
||||
) {
|
||||
Ok(tree) => Svg::Loaded(tree),
|
||||
|
|
@ -112,7 +112,7 @@ impl Cache {
|
|||
// It would be cool to be able to smooth resize the `svg` example.
|
||||
let mut img = tiny_skia::Pixmap::new(width, height)?;
|
||||
|
||||
let _ = resvg::render(
|
||||
resvg::render(
|
||||
tree,
|
||||
if width > height {
|
||||
usvg::FitTo::Width(width)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue