aboutsummaryrefslogtreecommitdiff
path: root/teensy
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-05-26 15:36:06 -0400
committeriamcheeseman <[email protected]>2026-05-26 15:36:06 -0400
commit2d64ec0a686173b084e02172bb77bd0ec3abdf1d (patch)
treed7c0527d8f9f59e8a75c6f9467f7ea6bfe3c531f /teensy
parented7dfaad432b6e3fe838b9a2b5fe225abea5365d (diff)
rename `tyui_draw()` -> `tyui_end_frame()`
Diffstat (limited to 'teensy')
-rw-r--r--teensy/teensy_ui.c2
-rw-r--r--teensy/teensy_ui.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/teensy/teensy_ui.c b/teensy/teensy_ui.c
index 3e10614..374d2bf 100644
--- a/teensy/teensy_ui.c
+++ b/teensy/teensy_ui.c
@@ -653,7 +653,7 @@ void update_windows(void)
}
}
-void tyui_draw(void)
+void tyui_end_frame(void)
{
draw_window(&tyui.root);
diff --git a/teensy/teensy_ui.h b/teensy/teensy_ui.h
index a7b5d4e..abcf291 100644
--- a/teensy/teensy_ui.h
+++ b/teensy/teensy_ui.h
@@ -104,6 +104,6 @@ void tyui_slider_ex(
void tyui_text_input(tyui_Text_Input *input);
// Draws all accumulated draw commands and initializes the next frame.
-void tyui_draw(void);
+void tyui_end_frame(void);
#endif // TEENSY_UI_H_