From 5196f7fbbd0799728eb5cce1cc24d31dec51763c Mon Sep 17 00:00:00 2001 From: awxkee Date: Wed, 5 Jun 2024 23:59:32 +0100 Subject: [PATCH] LUV bugfixes, improve LCh --- src/avx2_to_xyz_lab.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/avx2_to_xyz_lab.rs b/src/avx2_to_xyz_lab.rs index 8a64fde..19d6ac8 100644 --- a/src/avx2_to_xyz_lab.rs +++ b/src/avx2_to_xyz_lab.rs @@ -21,6 +21,7 @@ use crate::x86_64_simd_support::*; use std::arch::x86::*; #[cfg(target_arch = "x86_64")] use std::arch::x86_64::*; +#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] use crate::luv::{LUV_CUTOFF_FORWARD_Y, LUV_MULTIPLIER_FORWARD_Y}; #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]