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

Function bloom_draw_cube

native/linux/src/lib.rs:1069–1071  ·  view source on GitHub ↗
(x: f64, y: f64, z: f64, w: f64, h: f64, d: f64, r: f64, g: f64, b: f64, a: f64)

Source from the content-addressed store, hash-verified

1067
1068#[no_mangle]
1069pub extern "C" fn bloom_draw_cube(x: f64, y: f64, z: f64, w: f64, h: f64, d: f64, r: f64, g: f64, b: f64, a: f64) {
1070 engine().renderer.draw_cube(x, y, z, w, h, d, r, g, b, a);
1071}
1072#[no_mangle]
1073pub extern "C" fn bloom_draw_cube_wires(x: f64, y: f64, z: f64, w: f64, h: f64, d: f64, r: f64, g: f64, b: f64, a: f64) {
1074 engine().renderer.draw_cube_wires(x, y, z, w, h, d, r, g, b, a);

Callers

nothing calls this directly

Calls 2

draw_cubeMethod · 0.80
engineFunction · 0.70

Tested by

no test coverage detected