(font_handle: f64, text_ptr: *const u8, size: f64, spacing: f64)
| 458 | |
| 459 | #[no_mangle] |
| 460 | pub extern "C" fn bloom_measure_text_ex(font_handle: f64, text_ptr: *const u8, size: f64, spacing: f64) -> f64 { |
| 461 | let text = str_from_header(text_ptr); |
| 462 | engine().text.measure_text_ex(font_handle as usize, text, size as u32, spacing as f32) |
| 463 | } |
| 464 | |
| 465 | #[no_mangle] |
| 466 | pub extern "C" fn bloom_init_audio() { |
nothing calls this directly
no test coverage detected