fimg/benches/affine_transformations.rs

24 lines
678 B
Rust
Raw Normal View History

2023-09-04 21:55:20 -05:00
use fimg::*;
macro_rules! bench {
(fn $name: ident() { run $fn: ident() }) => {
2023-09-06 22:02:44 -05:00
fn $name() {
2023-09-05 23:21:32 -05:00
let mut img: Image<_, 4> =
Image::build(128, 128).buf(include_bytes!("4_128x128.imgbuf").to_vec());
2023-09-06 22:02:44 -05:00
for _ in 0..256 {
#[allow(unused_unsafe)]
unsafe {
img.$fn()
};
}
2023-09-04 21:55:20 -05:00
}
};
}
bench!(fn flip_h() { run flip_h() });
bench!(fn flip_v() { run flip_v() });
bench!(fn rotate_90() { run rot_90() });
bench!(fn rotate_180() { run rot_180() });
bench!(fn rotate_270() { run rot_270() });
2023-09-06 22:02:44 -05:00
iai::main!(flip_h, flip_v, rotate_90, rotate_180, rotate_270);