diff --git a/src/color.rs b/src/color.rs index eb3eb0d..2972ea7 100644 --- a/src/color.rs +++ b/src/color.rs @@ -1,11 +1,11 @@ use std::ops::{Add, AddAssign, Div, DivAssign, Mul, MulAssign}; -pub use color::{xyz_to_aces_ap0, xyz_to_aces_ap0_e, rec709_e_to_xyz, rec709_to_xyz, xyz_to_rec709, xyz_to_rec709_e}; -use float4::Float4; -use spectral_upsampling::{ - meng::{spectrum_xyz_to_p_4, EQUAL_ENERGY_REFLECTANCE}, - // jakob::{aces_to_spectrum_p4}, +pub use color::{ + rec709_e_to_xyz, rec709_to_xyz, xyz_to_aces_ap0, xyz_to_aces_ap0_e, xyz_to_rec709, + xyz_to_rec709_e, }; +use float4::Float4; +use spectral_upsampling::meng::{spectrum_xyz_to_p_4, EQUAL_ENERGY_REFLECTANCE}; use crate::{lerp::Lerp, math::fast_exp};