(offset_x: f64, offset_y: f64, target_x: f64, target_y: f64, rotation: f64, zoom: f64)
| 1025 | |
| 1026 | #[no_mangle] |
| 1027 | pub extern "C" fn bloom_begin_mode_2d(offset_x: f64, offset_y: f64, target_x: f64, target_y: f64, rotation: f64, zoom: f64) { |
| 1028 | engine().renderer.begin_mode_2d( |
| 1029 | offset_x as f32, offset_y as f32, |
| 1030 | target_x as f32, target_y as f32, |
| 1031 | rotation as f32, zoom as f32, |
| 1032 | ); |
| 1033 | } |
| 1034 | |
| 1035 | #[no_mangle] |
| 1036 | pub extern "C" fn bloom_end_mode_2d() { |
no test coverage detected