mirror of
https://github.com/bend-n/fimg.git
synced 2024-12-22 10:28:21 -06:00
fix simd
This commit is contained in:
parent
b7c91274c1
commit
d86a78b235
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "fimg"
|
name = "fimg"
|
||||||
version = "0.4.29"
|
version = "0.4.30"
|
||||||
authors = ["bend-n <bend.n@outlook.com>"]
|
authors = ["bend-n <bend.n@outlook.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
|
@ -4,7 +4,7 @@ use crate::cloner::ImageCloner;
|
||||||
|
|
||||||
use super::{assert_unchecked, Image};
|
use super::{assert_unchecked, Image};
|
||||||
use crate::pixels::Blend;
|
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.
|
/// Trait for layering a image ontop of another, with a offset to the second image.
|
||||||
pub trait OverlayAt<W> {
|
pub trait OverlayAt<W> {
|
||||||
|
|
Loading…
Reference in a new issue