Rokas Kupstys
Rokas Kupstys
Anyone that uses linux for the desktop uses 64bit OS. There is a tiny tiny portion of people who use 32bit linux specifically to make use of their very old...
Actual solution for maintaining input on X11 is this: ``` setxkbmap -option grab:break_actions xdotool key XF86Ungrab ```
Dear ImGui behaves correctly here. You should blame X11 design for what it is. The correct way around this problem is manually breaking mouse capture: ```sh # Enable ungrabbing at...
I am developing on wayland currently. Debugger definitely does not lock input like X11 does. I _think_ window merely gets messages when cursor moves over the window. Also, if cursor...
I verified what happens when window is not processing events: queue is filled up and if process resumes execution in timely manner then all queued events are processed by the...
In order to reproduce this issue you have to run cmake from non-developer terminal. It is strange though, because cmake still finds correct toolchain and proceeds to configure project to...
Instrumentation macros should check that then. As a workaround i patched tracy to allocate `s_profilerData` statically. It seems to work, but from looking at the code i lean towards believing...
I second this request. Currently to reorder commits i use "Edit Commit" menu which has an option to move a commit up or down. Needing to move a commit down...
`Format()` potentially allocates. A typical frame should not allocate memory.
Sorry for late response.. Yes, we already use `Format()` and it is bad. My go-to solution is to have a member `ea::string _temp_string{};` in the object and to format into...