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

Function bloom_draw_rect_lines

native/android/src/lib.rs:400–402  ·  view source on GitHub ↗
(x: f64, y: f64, w: f64, h: f64, thickness: f64, r: f64, g: f64, b: f64, a: f64)

Source from the content-addressed store, hash-verified

398
399#[no_mangle]
400pub extern "C" fn bloom_draw_rect_lines(x: f64, y: f64, w: f64, h: f64, thickness: f64, r: f64, g: f64, b: f64, a: f64) {
401 engine().renderer.draw_rect_lines(x, y, w, h, thickness, r, g, b, a);
402}
403
404#[no_mangle]
405pub extern "C" fn bloom_draw_circle(cx: f64, cy: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) {

Callers

nothing calls this directly

Calls 2

draw_rect_linesMethod · 0.80
engineFunction · 0.70

Tested by

no test coverage detected