Build on current nightly

This commit is contained in:
iris committed 2026-09-13 00:24:29 -04:00
1 parent 7b54aaf3c4
commit fae21a1991
10 files changed
+26 -24

No files matched your search

+2 -2
View File
@@ -144,7 +144,7 @@ impl ColorNum for f32 {
unsafe impl bytemuck::Pod for Color<u8> {}
impl const F32Conversion for f32 {
const impl F32Conversion for f32 {
fn to(self) -> f32 {
self
}
@@ -153,7 +153,7 @@ impl const F32Conversion for f32 {
}
}
impl const F32Conversion for u8 {
const impl F32Conversion for u8 {
fn to(self) -> f32 {
self as f32 / 255.0
}