(cx: f64, cy: f64, cz: f64, w: f64, d: f64, r: f64, g: f64, b: f64, a: f64)
| 1088 | |
| 1089 | #[no_mangle] |
| 1090 | pub extern "C" fn bloom_draw_plane(cx: f64, cy: f64, cz: f64, w: f64, d: f64, r: f64, g: f64, b: f64, a: f64) { |
| 1091 | engine().renderer.draw_plane(cx, cy, cz, w, d, r, g, b, a); |
| 1092 | } |
| 1093 | |
| 1094 | #[no_mangle] |
| 1095 | pub extern "C" fn bloom_draw_grid(slices: f64, spacing: f64) { |
no test coverage detected