aboutsummaryrefslogtreecommitdiff
path: root/plat.h
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2024-10-01 18:34:07 +1000
committerquou <quou@disroot.org>2024-10-01 18:34:07 +1000
commit20311c69d2fd4315e3fecf731819d7eba3152871 (patch)
treeceb0776ac26f7f6f4683c5ec8ccfdb1d8661dfba /plat.h
parentfbc6770df9234bf89b5e4fe3ae07af6f3ab96281 (diff)
debug rectangle drawing
Diffstat (limited to 'plat.h')
-rw-r--r--plat.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/plat.h b/plat.h
index 32f17f6..687106d 100644
--- a/plat.h
+++ b/plat.h
@@ -85,4 +85,12 @@ int btn_pressed(const App* a, Btn btn);
int btn_just_pressed(const App* a, Btn btn);
int btn_just_released(const App* a, Btn btn);
+void ren_debug_rect(
+ int x,
+ int y,
+ int w,
+ int h,
+ unsigned colour
+);
+
#endif