Implement camera colors
CI / cargo fmt (push) Successful in 22s
CI / cargo test (push) Successful in 12m34s
CI / cargo test (GPU) (push) Successful in 12m51s

Still needs some unit tests, and to fix the gasket example
This commit is contained in:
2026-07-03 14:07:45 -04:00
parent a1b9a274f7
commit 54ba76b380
4 changed files with 120 additions and 57 deletions
+5 -2
View File
@@ -64,7 +64,10 @@ mod test {
}
#[test]
pub fn has_entry_main_camera() {
assert!(has_entry_point(ExecutionModel::GLCompute, "main_camera"))
pub fn has_entry_main_image_render() {
assert!(has_entry_point(
ExecutionModel::GLCompute,
"main_image_render"
))
}
}