fast image operations
fix simd
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | src/overlay.rs | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ [package] name = "fimg" -version = "0.4.29" +version = "0.4.30" authors = ["bend-n <[email protected]>"] license = "MIT" edition = "2021" diff --git a/src/overlay.rs b/src/overlay.rs index 8561ab5..8eca5d5 100644 --- a/src/overlay.rs +++ b/src/overlay.rs @@ -4,7 +4,7 @@ use crate::cloner::ImageCloner; use super::{assert_unchecked, Image}; use crate::pixels::Blend; -use std::simd::{simd_swizzle, Simd, SimdInt, SimdPartialOrd}; +use std::simd::prelude::*; /// Trait for layering a image ontop of another, with a offset to the second image. pub trait OverlayAt<W> { |