(
pos_x: f64, pos_y: f64, pos_z: f64,
target_x: f64, target_y: f64, target_z: f64,
up_x: f64, up_y: f64, up_z: f64,
fovy: f64, projection: f64,
)
| 485 | |
| 486 | #[wasm_bindgen] |
| 487 | pub fn bloom_begin_mode_3d( |
| 488 | pos_x: f64, pos_y: f64, pos_z: f64, |
| 489 | target_x: f64, target_y: f64, target_z: f64, |
| 490 | up_x: f64, up_y: f64, up_z: f64, |
| 491 | fovy: f64, projection: f64, |
| 492 | ) { |
| 493 | engine().renderer.begin_mode_3d( |
| 494 | pos_x as f32, pos_y as f32, pos_z as f32, |
| 495 | target_x as f32, target_y as f32, target_z as f32, |
| 496 | up_x as f32, up_y as f32, up_z as f32, |
| 497 | fovy as f32, projection as f32, |
| 498 | ); |
| 499 | } |
| 500 | |
| 501 | #[wasm_bindgen] |
| 502 | pub fn bloom_end_mode_3d() { |
nothing calls this directly
no test coverage detected