diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2024-08-12 20:45:59 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2024-08-12 20:45:59 +0200 |
commit | 1d159ce047d66a05031fa5e5baa23a97039fcda3 (patch) | |
tree | 6aaafd8f3e463c68094da31b9bc44b16b5d005f1 /reduced_system_layer.c | |
parent | ec7ce54de5583ab11de5b19e6efc146cb52c3418 (diff) | |
download | reduced_system_layer-1d159ce047d66a05031fa5e5baa23a97039fcda3.zip |
Update TODO
Diffstat (limited to 'reduced_system_layer.c')
-rwxr-xr-x | reduced_system_layer.c | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/reduced_system_layer.c b/reduced_system_layer.c index a200695..1e360a1 100755 --- a/reduced_system_layer.c +++ b/reduced_system_layer.c @@ -26,6 +26,22 @@ #/ #/ ---------------------------------------------------------------- #/ +#/ To-Do list +#/ +#/ - Examples +#/ - Landscape +#/ - Conway's Game if Life +#/ - Julia Set +#/ - Labyrinth +#/ - Features +#/ - Sound +#/ - Clipboard daemon +#/ +#/ ALSA +#/ https://www.alsa-project.org/alsa-doc/alsa-lib/_2test_2pcm_min_8c-example.html +#/ +#/ ---------------------------------------------------------------- +#/ #/ (C) 2024 Mitya Selivanov <guattari.tech>, MIT License #/ #/ ================================================================ @@ -228,6 +244,7 @@ i32 main(i32 argc, c8 **argv) { while (!platform.done) { p_handle_events(); p_render_frame(); + p_sleep_for(0); } p_cleanup(); @@ -240,14 +257,9 @@ i32 main(i32 argc, c8 **argv) { // // PLATFORM IMPLEMENTATION // -// ---------------------------------------------------------------- -// -// TODO -// - Sound -// - Clipboard daemon +// ================================================================ // -// ALSA -// https://www.alsa-project.org/alsa-doc/alsa-lib/_2test_2pcm_min_8c-example.html +// Utilities // // ================================================================ |