| 3070 | } |
| 3071 | |
| 3072 | LfTextProps lf_text_render(vec2s pos, const char* str, LfFont font, LfColor color, |
| 3073 | int32_t wrap_point, vec2s stop_point, bool no_render, bool render_solid, int32_t start_index, int32_t end_index) { |
| 3074 | wchar_t* wstr = str_to_wstr(str); |
| 3075 | LfTextProps textprops = lf_text_render_wchar(pos, (const wchar_t*)wstr, font, color, wrap_point, stop_point, no_render, render_solid, start_index, end_index); |
| 3076 | free(wstr); |
| 3077 | return textprops; |
| 3078 | } |
| 3079 | |
| 3080 | |
| 3081 | LfTextProps lf_text_render_wchar(vec2s pos, const wchar_t* str, LfFont font, LfColor color, |
no test coverage detected