| 2842 | } |
| 2843 | |
| 2844 | float lf_get_text_end(const char* str, float start_x) { |
| 2845 | LfFont font = get_current_font(); |
| 2846 | LfTextProps props = text_render_simple((vec2s){start_x, 0.0f}, str, font, state.theme.text_props.text_color, true); |
| 2847 | return props.end_x; |
| 2848 | } |
| 2849 | |
| 2850 | void lf_text(const char* text) { |
| 2851 | // Retrieving the property data of the text |
nothing calls this directly
no test coverage detected