(font_handle: f64, text_ptr: *const u8, size: f64, spacing: f64)
| 885 | |
| 886 | #[no_mangle] |
| 887 | pub extern "C" fn bloom_measure_text_ex(font_handle: f64, text_ptr: *const u8, size: f64, spacing: f64) -> f64 { |
| 888 | let text = str_from_header(text_ptr); |
| 889 | engine().text.measure_text_ex(font_handle as usize, text, size as u32, spacing as f32) |
| 890 | } |
| 891 | |
| 892 | // ============================================================ |
| 893 | // Textures |
nothing calls this directly
no test coverage detected