-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor, Added SSE for RGBA -> XYZa
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,35 @@ | ||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] | ||
mod sse_image_to_linear_u8; | ||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] | ||
mod sse_linear_to_image; | ||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] | ||
mod sse_math; | ||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] | ||
mod sse_to_linear; | ||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] | ||
mod sse_to_xyz_lab; | ||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] | ||
mod sse_gamma_curves; | ||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] | ||
mod sse_support; | ||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] | ||
mod sse_from_xyz_lab; | ||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] | ||
mod sse_to_xyza_laba; | ||
|
||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] | ||
pub use sse_image_to_linear_u8::*; | ||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] | ||
pub use sse_linear_to_image::*; | ||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] | ||
pub use sse_math::*; | ||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] | ||
pub use sse_to_xyz_lab::*; | ||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] | ||
pub use sse_gamma_curves::*; | ||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] | ||
pub use sse_support::*; | ||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] | ||
pub use sse_to_linear::*; | ||
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))] | ||
pub use sse_to_xyza_laba::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters