Skip to content

Commit

Permalink
Refactor, improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
awxkee committed Jun 19, 2024
1 parent 49c10a0 commit fc3ca2f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ mod rgba_f32;
mod rgba_u8;
mod sampler;
mod scaler;
#[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
#[cfg(all(
any(target_arch = "x86_64", target_arch = "x86"),
target_feature = "sse4.1"
))]
mod sse;
mod support;
mod threading_policy;
Expand Down

0 comments on commit fc3ca2f

Please sign in to comment.