mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-27 10:41:58 +02:00
Make the debug logging functions consistent
They now all output the same format of: [time since program start] msg
This commit is contained in:
2
glfw/internal.h
vendored
2
glfw/internal.h
vendored
@@ -883,3 +883,5 @@ char* _glfw_strdup(const char* source);
|
||||
|
||||
void _glfw_free_clipboard_data(_GLFWClipboardData *cd);
|
||||
|
||||
#define debug_rendering(...) if (_glfw.hints.init.debugRendering) { timed_debug_print(__VA_ARGS__); }
|
||||
#define debug_input(...) if (_glfw.hints.init.debugKeyboard) { timed_debug_print(__VA_ARGS__); }
|
||||
|
||||
Reference in New Issue
Block a user