(offset_x: f64, offset_y: f64, target_x: f64, target_y: f64, rotation: f64, zoom: f64)
| 467 | |
| 468 | #[wasm_bindgen] |
| 469 | pub fn bloom_begin_mode_2d(offset_x: f64, offset_y: f64, target_x: f64, target_y: f64, rotation: f64, zoom: f64) { |
| 470 | engine().renderer.begin_mode_2d( |
| 471 | offset_x as f32, offset_y as f32, |
| 472 | target_x as f32, target_y as f32, |
| 473 | rotation as f32, zoom as f32, |
| 474 | ); |
| 475 | } |
| 476 | |
| 477 | #[wasm_bindgen] |
| 478 | pub fn bloom_end_mode_2d() { |
nothing calls this directly
no test coverage detected