Skip to content

Commit

Permalink
Image to LAB/XYZ improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
awxkee committed Jun 2, 2024
1 parent 0b06462 commit 30ce940
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/neon_xyza_laba_to_image.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,20 @@ use crate::image_to_xyz_lab::XyzTarget;
any(target_arch = "aarch64", target_arch = "arm"),
target_feature = "neon"
))]
#[cfg(all(
any(target_arch = "aarch64", target_arch = "arm"),
target_feature = "neon"
))]
use crate::neon_linear_to_image::get_neon_gamma_transfer;
#[cfg(all(
any(target_arch = "aarch64", target_arch = "arm"),
target_feature = "neon"
))]
use crate::neon_math::vcolorq_matrix_f32;
#[cfg(all(
any(target_arch = "aarch64", target_arch = "arm"),
target_feature = "neon"
))]
use crate::neon_xyz_lab_to_image::neon_lab_to_xyz;
#[cfg(all(
any(target_arch = "aarch64", target_arch = "arm"),
Expand Down

0 comments on commit 30ce940

Please sign in to comment.