| 2785 | } |
| 2786 | |
| 2787 | void _lf_begin_loc(const char* file, int32_t line) { |
| 2788 | state.pos_ptr = (vec2s){0, 0}; |
| 2789 | renderer_begin(); |
| 2790 | LfUIElementProps props = get_props_for(state.theme.div_props); |
| 2791 | props.color = (LfColor){0, 0, 0, 0}; |
| 2792 | lf_push_style_props(props); |
| 2793 | |
| 2794 | lf_div_begin(((vec2s){0, 0}), ((vec2s){(float)state.dsp_w, (float)state.dsp_h}), true); |
| 2795 | |
| 2796 | lf_pop_style_props(); |
| 2797 | } |
| 2798 | void lf_end() { |
| 2799 | lf_div_end(); |
| 2800 |
nothing calls this directly
no test coverage detected