diff options
author | Maxwell Beck <max@rastertail.net> | 2025-03-30 15:46:30 -0500 |
---|---|---|
committer | Maxwell Beck <max@rastertail.net> | 2025-03-30 15:46:30 -0500 |
commit | 1d888631c3e4c423c2b782b01ca29fc1057c51a2 (patch) | |
tree | c43e996ea16b577ee7a02b5d4f97ecf99dde033c /src/pipeline.rs |
Initial commit
Diffstat (limited to 'src/pipeline.rs')
-rw-r--r-- | src/pipeline.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pipeline.rs b/src/pipeline.rs new file mode 100644 index 0000000..3ef02d6 --- /dev/null +++ b/src/pipeline.rs @@ -0,0 +1,5 @@ +use crate::demosaic::Demosaic; + +pub struct Resources { + pub demosaic: Box<dyn Demosaic>, +} |