From c6a8f9309794ec0985a78f9ad6335d3411c9a6d5 Mon Sep 17 00:00:00 2001 From: Nathan Vegdahl Date: Fri, 21 Jun 2019 21:47:53 +0900 Subject: [PATCH] Run rustfmt. No functional change. --- src/color.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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};