ImGui.NET icon indicating copy to clipboard operation
ImGui.NET copied to clipboard

An ImGui wrapper for .NET.

Results 179 ImGui.NET issues
Sort by recently updated
recently updated
newest added

Title. the ocornut guy from ImGui told me I need to set this so I can see further information when something crashes, by whoever fault it is. I can't see...

Are there any SharpDX samples?

``` Fatal error. System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corru pt. Repeat 2 times: -------------------------------- at ImGuiNET.ImGuiNative.igBegin(Byte*, Byte*, ImGuiNET.ImGuiWindowFlags)...

Currently, when anything goes wrong with ImGui.NET invocation, we end up with an AccessViolationException with no diagnostics or asserts or other clues as to what failed. This is particularly problematic...

Resolving the issue of UTF-8 strings displaying as '??????' ![屏幕截图 2024-04-23 085923](https://github.com/ImGuiNET/ImGui.NET/assets/167826367/554890b6-3b5e-474c-b3e1-c8654bd738ab) ![屏幕截图 2024-04-23 085800](https://github.com/ImGuiNET/ImGui.NET/assets/167826367/6ca01fbb-cd6b-4221-b498-1d31761465f0) ![屏幕截图 2024-04-23 085945](https://github.com/ImGuiNET/ImGui.NET/assets/167826367/2b4a6827-0936-4b34-8e09-c6522b8664de)

consider [ImGuiFileDialog](https://github.com/aiekick/ImGuiFileDialog)

Would allow for taking advantage of [C#11 UTF-8 string literals](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-11.0/utf8-string-literals), which can be simply pinned and passed over to ImGui directly (without incurring any memory allocations / no UTF-8 conversions...

I've ran into #127 myself. Though the proposed solution does _work_, I find it inadequate from the API viewpoint

On linux `lincimgui.so` is built against glibc2.29. Log from a RHEL8 / Rocky8 which based on glibc2.28 : ``` /lib64/libm.so.6: version `GLIBC_2.29' not found (required by [...]/bin/Debug/net8.0/runtimes/linux-x64/native/libcimgui.so) ``` rhel8/rocky8 are...

For a long while I've now been stuck on rendering images on IMGUI overlay window. In my Overlay constructor I have the creation of Direct3D11 device and the loading of...