Compare commits
2 commits
c7d6bd8aef
...
d9e26556e6
Author | SHA1 | Date | |
---|---|---|---|
Gered | d9e26556e6 | ||
Gered | ed95332699 |
|
@ -1,5 +1,5 @@
|
||||||
use std::simd;
|
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::graphics::{edge_function, per_pixel_triangle_2d, BlendFunction, RgbaBitmap, RGBA};
|
||||||
use crate::math::Vector2;
|
use crate::math::Vector2;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
use std::ops::{Mul, MulAssign};
|
use std::ops::{Mul, MulAssign};
|
||||||
use std::simd;
|
use std::simd;
|
||||||
use std::simd::{SimdFloat, SimdUint};
|
use std::simd::prelude::{SimdFloat, SimdUint};
|
||||||
|
|
||||||
use byteorder::{ReadBytesExt, WriteBytesExt};
|
use byteorder::{ReadBytesExt, WriteBytesExt};
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
use std::ops::{Add, Div, Mul, Sub};
|
use std::ops::{Add, Div, Mul, Sub};
|
||||||
use std::simd;
|
use std::simd;
|
||||||
use std::simd::{SimdFloat, SimdPartialOrd};
|
use std::simd::prelude::{SimdFloat, SimdPartialOrd};
|
||||||
|
|
||||||
mod circle;
|
mod circle;
|
||||||
mod matrix3x3;
|
mod matrix3x3;
|
||||||
|
|
|
@ -4,4 +4,4 @@
|
||||||
# necessarily see a reason to keep using whatever nightly version is the latest, and would
|
# necessarily see a reason to keep using whatever nightly version is the latest, and would
|
||||||
# prefer stick with versions that appear to be stable and just periodically do manual updates
|
# prefer stick with versions that appear to be stable and just periodically do manual updates
|
||||||
# here to get *some* peace of mind in terms of build stability.
|
# here to get *some* peace of mind in terms of build stability.
|
||||||
channel = "nightly-2023-11-10"
|
channel = "nightly-2024-09-05"
|
||||||
|
|
Loading…
Reference in a new issue