Skip to content

Commit

Permalink
f16, f32, bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
awxkee committed Apr 27, 2024
1 parent bbb0be2 commit b694692
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libblur"
version = "0.9.2"
version = "0.9.3"
edition = "2021"
description = "High performance blur in pure rust"
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ fn main() {
dst_bytes.resize(dimensions.1 as usize * stride, 0);
let start_time = Instant::now();

libblur::fast_gaussian_next(
libblur::fast_gaussian(
&mut bytes,
stride as u32,
dimensions.0,
Expand Down

0 comments on commit b694692

Please sign in to comment.