(
px: f64, py: f64, pz: f64,
tx: f64, ty: f64, tz: f64,
ux: f64, uy: f64, uz: f64,
fovy: f64, proj: f64,
)
| 653 | |
| 654 | #[no_mangle] |
| 655 | pub extern "C" fn bloom_begin_mode_3d( |
| 656 | px: f64, py: f64, pz: f64, |
| 657 | tx: f64, ty: f64, tz: f64, |
| 658 | ux: f64, uy: f64, uz: f64, |
| 659 | fovy: f64, proj: f64, |
| 660 | ) { |
| 661 | draw_list::set_camera(px, py, pz, tx, ty, tz, ux, uy, uz, fovy, proj); |
| 662 | } |
| 663 | |
| 664 | #[no_mangle] |
| 665 | pub extern "C" fn bloom_end_mode_3d() { |
nothing calls this directly
no test coverage detected