Rokas Kupstys
Rokas Kupstys
Hello, I am trying to build the static probe for VxWorks, but it fails, because our Qt builds do not build with a "library" feature and as a result some...
I have integrated ImGuizmo into several projects by now. A recurring theme is me doing this: ```cpp static bool CanActivate() { if (ImGui::IsMouseClicked(0) && /*!ImGui::IsAnyItemHovered() &&*/ !ImGui::IsAnyItemActive()) { return true;...
Currently `ViewManipulate()` causes jumpy camera movements when vertical rotation hits 90 or -90 degrees. Maybe it would make sense to limit rotating past these points? 
According to the internet `malloc.h` is deprecated on MacOS and users should be including `stdlib.h` instead. Edit: Seems like we should use: ``` #if __APPLE__ #include #else #include #endif ```
I have a simple jester webapp that uses a route as websocket. Client connecting to server throws an exception: ``` ~/src/nim/karax-test % ./agent /home/rk/src/nim/karax-test/agent.nim(11) agent /home/rk/src/nim/Nim/lib/pure/asyncmacro.nim(311) main /home/rk/src/nim/Nim/lib/pure/asyncmacro.nim(34) main_continue /home/rk/src/nim/karax-test/agent.nim(6)...
We are using GLFW windows without decorations + glfwSetWindowPos() to move them. On X11 such windows can not move outside of desktop bounds. This behavior does not manifest on other...
As a result, we can test binding generation. Tests were moved to a dll, because bindings code must be in dll as well. Tests.exe becomes a thin wrapper around this...
Are these two modes not compatible? Zones call `GetProfiler().IsConnected()` which asserts in `GetProfilerData()`.
Hi, Could you please clarify how does cr behave with threads? Suppose i launch some workers through `std::async()` and a plugin gets reloaded while a thread is running. Is this...
Please correct me if i am wrong, but it seems like `OPTIONS` is designed only for a simple `KEY=VALUE` case. Some cases require `KEY=VALUE1;VALUE2;...` configuration which is currently not possible....