diff options
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) |