split real out into its own crate

this is a move toward reusing some of the coremem helper types in the
spirv backend.
This commit is contained in:
2022-07-17 17:32:35 -07:00
parent ac3895c432
commit 9d102e0152
8 changed files with 23 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ use crossterm::{cursor, QueueableCommand as _};
use crossterm::style::{style, Color, PrintStyledContent, Stylize as _};
use font8x8::{BASIC_FONTS, GREEK_FONTS, UnicodeFonts as _};
use log::trace;
use num::integer::Integer;
use num::integer::Integer; // TODO: remove?
use image::{RgbImage, Rgb};
use imageproc::{pixelops, drawing};
use rayon::prelude::*;