MCPcopy Create free account
hub / github.com/Bloom-Engine/engine / bloom_begin_mode_2d

Function bloom_begin_mode_2d

native/ios/src/lib.rs:1027–1033  ·  view source on GitHub ↗
(offset_x: f64, offset_y: f64, target_x: f64, target_y: f64, rotation: f64, zoom: f64)

Source from the content-addressed store, hash-verified

1025
1026#[no_mangle]
1027pub 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]
1036pub extern "C" fn bloom_end_mode_2d() {

Callers 2

beginMode2DFunction · 0.50
beginMode2DRawFunction · 0.50

Calls 2

begin_mode_2dMethod · 0.80
engineFunction · 0.70

Tested by

no test coverage detected