1
0
Fork 0
forked from wry/wry

utils: move damage algorithms to algorithm crate

This commit is contained in:
Julian Orth 2022-06-03 21:01:20 +02:00
parent 259340938b
commit 6e244a08ab
12 changed files with 710 additions and 542 deletions

5
algorithms/src/lib.rs Normal file
View file

@ -0,0 +1,5 @@
#![feature(generic_associated_types)]
pub mod qoi;
pub mod rect;
mod windows;