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

Function bloom_draw_plane

native/android/src/lib.rs:705–707  ·  view source on GitHub ↗
(x: f64, y: f64, z: f64, w: f64, d: f64, r: f64, g: f64, b: f64, a: f64)

Source from the content-addressed store, hash-verified

703}
704#[no_mangle]
705pub extern "C" fn bloom_draw_plane(x: f64, y: f64, z: f64, w: f64, d: f64, r: f64, g: f64, b: f64, a: f64) {
706 engine().renderer.draw_plane(x, y, z, w, d, r, g, b, a);
707}
708#[no_mangle]
709pub extern "C" fn bloom_draw_grid(slices: f64, spacing: f64) {
710 engine().renderer.draw_grid(slices as i32, spacing);

Callers

nothing calls this directly

Calls 2

draw_planeMethod · 0.80
engineFunction · 0.70

Tested by

no test coverage detected