mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-07-17 06:41:27 -07:00
query watch windows progress; hook up visualizer schemas to cfg evaluator, use in tab query watch
This commit is contained in:
@@ -3411,6 +3411,21 @@ ui_push_tagf(char *fmt, ...)
|
||||
scratch_end(scratch);
|
||||
}
|
||||
|
||||
internal F32
|
||||
ui_top_px_height(void)
|
||||
{
|
||||
F32 result = ui_top_font_size();
|
||||
for(UI_PrefHeightNode *n = ui_state->pref_height_stack.top; n != 0; n = n->next)
|
||||
{
|
||||
if(n->v.kind == UI_SizeKind_Pixels)
|
||||
{
|
||||
result = n->v.value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
////////////////////////////////
|
||||
//~ rjf: Generated Code
|
||||
|
||||
|
||||
@@ -1112,6 +1112,7 @@ internal UI_Size ui_set_next_pref_size(Axis2 axis, UI_Size v);
|
||||
internal void ui_push_corner_radius(F32 v);
|
||||
internal void ui_pop_corner_radius(void);
|
||||
internal void ui_push_tagf(char *fmt, ...);
|
||||
internal F32 ui_top_px_height(void);
|
||||
|
||||
////////////////////////////////
|
||||
//~ rjf: Macro Loop Wrappers
|
||||
|
||||
Reference in New Issue
Block a user