David Maas
David Maas
[Multi-Viewports](https://github.com/ocornut/imgui/wiki/Multi-Viewports) is likely what you want. > thanks for your help and feel free to delete this non-issue While some communities have dedicated support forums, Dear ImGui does not. It's...
You beat me to my follow-up comment. I realized I probably focused too much on the "main window" part of your title, sorry about that! It's not totally clear what...
> [This commit](https://github.com/NuGet/NuGet.Jobs/pull/298/commits/394fddcf1e0ad3815c7efe4cbe2dde2b3902a3e0) shows how to add a user-agent to the list. For anyone else who wanders into this thread in the future, this YAML file seems to have been...
Thought I had after leaving that comment: Could all the unknown clients be from the Chinese CDN? I don't fully understand its purpose, but the user agent parser has logic...
`Mochi.DearImGui`'s `ImVersionConstantsTransformation` would also benefit from this.
Here's a skeleton test to test this issue is resolved. The typedef check needs to be added once a decision is made there. ```csharp [Fact] [RelatedIssue("https://github.com/InfectedLibraries/Biohazrd/issues/115")] public void FunctionPointerTest3() {...
After talking with a friend about this a bit, I discovered you can use function typedefs like this function pointers without the `*`: ```c typedef void (function_t)(int x); static function_t...
This issue is fixed, opened https://github.com/InfectedLibraries/Biohazrd/issues/126 for the investigating other situations where these are valid. (Which may be more important now that there's no assert to alert us to the...
This seemingly regressed at some point or there is an edge case which is not being covered. For example, in PortAudio the following declaration is translated incorrectly: ```c typedef void...
> Am I correct that this is not currently Correct. You'd have to make a custom widget specific to your backend to accomplish this. You might find `ImDrawList::AddCallback` helpful for...