Skip to content

Commit

Permalink
Update to latest core
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianEddy committed Jun 24, 2024
1 parent dedbc51 commit b6dbac3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ofx = "0.3"
log = "0.4"
itertools = "0.13"
lru = "0.12"
gyroflow-core = { git = "https://github.com/gyroflow/gyroflow.git", default-features = false, rev = "b99ffea", features = ["bundle-lens-profiles"] }
gyroflow-core = { git = "https://github.com/gyroflow/gyroflow.git", default-features = false, rev = "f72b44e", features = ["bundle-lens-profiles"] }
#gyroflow-core = { path = "../gyroflow/src/core", default-features = false, features = ["bundle-lens-profiles"] }
log-panics = "2.1"
rfd = { version = "0.14", default-features = false, features = ["xdg-portal", "async-std"] }
Expand Down
8 changes: 4 additions & 4 deletions src/gyroflow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -768,10 +768,10 @@ impl Execute for GyroflowPlugin {
if let Some(ref mut buffers) = buffers {
let processed = match output_image.get_pixel_depth()? {
BitDepth::None => { return FAILED; },
BitDepth::Byte => stab.process_pixels::<RGBA8> (timestamp_us, buffers),
BitDepth::Short => stab.process_pixels::<RGBA16> (timestamp_us, buffers),
BitDepth::Half => stab.process_pixels::<RGBAf16>(timestamp_us, buffers),
BitDepth::Float => stab.process_pixels::<RGBAf> (timestamp_us, buffers)
BitDepth::Byte => stab.process_pixels::<RGBA8> (timestamp_us, None, buffers),
BitDepth::Short => stab.process_pixels::<RGBA16> (timestamp_us, None, buffers),
BitDepth::Half => stab.process_pixels::<RGBAf16>(timestamp_us, None, buffers),
BitDepth::Float => stab.process_pixels::<RGBAf> (timestamp_us, None, buffers)
};
match processed {
Ok(_) => {
Expand Down

0 comments on commit b6dbac3

Please sign in to comment.