Skip to content
Snippets Groups Projects
Verified Commit 3ebe1bcb authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

fix: util inclusion

parent 9c6c283f
No related branches found
No related tags found
No related merge requests found
Pipeline #4884 passed
......@@ -108,10 +108,9 @@ pub fn rgb888_to_rgb1555_scalar(rgb888_pixels: &[u8], rgb1555_pixels: &mut [u8])
/// `rgb1555_pixels` must be a multiple of 2.
#[cfg(feature = "simd")]
pub fn rgb888_to_rgb1555_simd(rgb888_pixels: &[u8], rgb1555_pixels: &mut [u8]) {
use boytacean_common::util::interleave_arrays;
use std::simd::u8x16;
use crate::util::interleave_arrays;
const SIMD_WIDTH: usize = 16;
assert!(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment