Gavin
Gavin
@akshaybabloo , did you properly load the qss file from the correct location? Edit the .qss file and make sure all the paths to the icons look correct, they should...
Hi, I wanted to check the status on this. Is there any plans to allow communication over domain sockets? I'm using rpclib for a project, but I would really like...
I don't know if this is worth doing, but LunarG provides some default profiles. Instead of having to write a JSON parser for your library, you can probably use a...
I'll see what I can do :)
Sorry for no PR, but here's some extracted code that can be placed into the ImGuizmo.cpp file. Both functions return true if the mouse is over the line. Most of...
I didn't use uint32_t because the cstdint header wasn't included in the imguizmo, but that can easily be changed. I chose to stick with the 2D version because it was...
There's a table on here [C Data Types](https://en.wikipedia.org/wiki/C_data_types) page that indicates how large each type is. One thing to note is that `singed int is at least 16 bits` and...
Fair point. The C-style print statements are probably where the biggest issues will arise. What if you had a preprocessor definition to override the default imgui types with the standard...
Where I noticed the issue was when writing some template code: ```c++ it constexpr ( std::is_same_v ) { } ``` This failed when T was ImU64. Now that I know...
I think I accidentally marked this as completed. You can close/ignore this issue.