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

Function bloom_draw_plane

native/windows/src/lib.rs:942–944  ·  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

940}
941#[no_mangle]
942pub extern "C" fn bloom_draw_plane(x: f64, y: f64, z: f64, w: f64, d: f64, r: f64, g: f64, b: f64, a: f64) {
943 engine().renderer.draw_plane(x, y, z, w, d, r, g, b, a);
944}
945#[no_mangle]
946pub extern "C" fn bloom_draw_grid(slices: f64, spacing: f64) {
947 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