fix simd imports

This commit is contained in:
Gered 2024-09-07 16:51:36 -04:00
parent ed95332699
commit d9e26556e6
3 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
use std::simd;
use std::simd::{SimdFloat, SimdUint};
use std::simd::prelude::{SimdFloat, SimdUint};
use crate::graphics::{edge_function, per_pixel_triangle_2d, BlendFunction, RgbaBitmap, RGBA};
use crate::math::Vector2;

View file

@ -1,6 +1,6 @@
use std::ops::{Mul, MulAssign};
use std::simd;
use std::simd::{SimdFloat, SimdUint};
use std::simd::prelude::{SimdFloat, SimdUint};
use byteorder::{ReadBytesExt, WriteBytesExt};

View file

@ -1,6 +1,6 @@
use std::ops::{Add, Div, Mul, Sub};
use std::simd;
use std::simd::{SimdFloat, SimdPartialOrd};
use std::simd::prelude::{SimdFloat, SimdPartialOrd};
mod circle;
mod matrix3x3;