mirror of
https://github.com/bend-n/fimg.git
synced 2024-12-22 02:28:19 -06:00
fix simd
This commit is contained in:
parent
b7c91274c1
commit
d86a78b235
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "fimg"
|
||||
version = "0.4.29"
|
||||
version = "0.4.30"
|
||||
authors = ["bend-n <bend.n@outlook.com>"]
|
||||
license = "MIT"
|
||||
edition = "2021"
|
||||
|
|
|
@ -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> {
|
||||
|
|
Loading…
Reference in a new issue