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

Function bloom_draw_plane

native/linux/src/lib.rs:1089–1091  ·  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

1087}
1088#[no_mangle]
1089pub extern "C" fn bloom_draw_plane(x: f64, y: f64, z: f64, w: f64, d: f64, r: f64, g: f64, b: f64, a: f64) {
1090 engine().renderer.draw_plane(x, y, z, w, d, r, g, b, a);
1091}
1092#[no_mangle]
1093pub extern "C" fn bloom_draw_grid(slices: f64, spacing: f64) {
1094 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