Add image accumulation entry point
CI / cargo fmt (push) Failing after 59s
CI / cargo test (push) Successful in 16m1s
CI / cargo test (GPU) (push) Has been cancelled

I was hoping to implement the image filter/reduction step as well, but that seems to be meaningfully more complex
This commit is contained in:
2026-07-19 19:45:44 -04:00
parent 81a1a2a254
commit e688de5204
9 changed files with 182 additions and 60 deletions
+4 -1
View File
@@ -54,6 +54,9 @@ mod test {
#[test]
fn has_entry_main_camera() {
assert!(has_entry_point(ExecutionModel::GLCompute, "main_camera"))
assert!(has_entry_point(
ExecutionModel::GLCompute,
"main_image_accumulate"
))
}
}