diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2025-01-18 15:35:32 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2025-01-18 15:35:32 +0100 |
commit | ab05a758736128ec6bc49a91d4c5a1136851ed43 (patch) | |
tree | d1c7d3b6cf0ec9a6ba36a2ed1211856913d786d9 /reduced_system_layer.c | |
parent | a7070a52f3f32a24822ddd9bf0efebc4272661ab (diff) | |
download | reduced_system_layer-ab05a758736128ec6bc49a91d4c5a1136851ed43.zip |
Add tests
Diffstat (limited to 'reduced_system_layer.c')
-rw-r--r-- | reduced_system_layer.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/reduced_system_layer.c b/reduced_system_layer.c index 50f3452..07087f7 100644 --- a/reduced_system_layer.c +++ b/reduced_system_layer.c @@ -28,7 +28,6 @@ // To-Do list // // - Work in progress -// - Drop files - Web // - Seldom allocator // - Logging // - Examples @@ -43,6 +42,7 @@ // - CMYK color // - Textures // - Test suite +// - Improve microbenchmarks library // - System // - Window // - Wayland @@ -99,7 +99,7 @@ // - Sound - ALSA, Web // - Networking // - Unix UDP sockets -// - Drop files - X11 +// - Drop files - X11, Web // // ---------------------------------------------------------------- // @@ -224,7 +224,7 @@ i32 main(i32 argc, c8 **argv); #ifndef FRAME_DURATION_HARD_LIMIT // The pixel size value will reset if the frame duration is higher. -#define FRAME_DURATION_HARD_LIMIT 500 +#define FRAME_DURATION_HARD_LIMIT 400 #endif #ifndef NUM_FRAMES_AVERAGED @@ -1478,7 +1478,6 @@ static i16 _key_table [MAX_NUM_KEYS] = {0}; static b8 _key_repeat [MAX_NUM_KEYS] = {0}; static u32 _pixels_scaled [MAX_NUM_PIXELS] = {0}; static u32 _pixels_internal [MAX_NUM_PIXELS] = {0}; -static c8 _clipboard_buffer [MAX_CLIPBOARD_SIZE] = {0}; static b8 sub_str_eq_(c8 *a, c8 *b, i64 len) { for (i64 i = 0; i < len; ++i) |