This commit is contained in:
bendn 2023-12-07 09:24:53 +07:00
parent b7c91274c1
commit d86a78b235
No known key found for this signature in database
GPG key ID: 0D9D3A2A3B2A93D6
2 changed files with 2 additions and 2 deletions

View file

@ -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"

View file

@ -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> {