imgui-go
imgui-go copied to clipboard
Go wrapper library for "Dear ImGui" (https://github.com/ocornut/imgui)
I have a screen for a game where the user enters parameters for the level creation. I don't want the draggable window, is it possible to just render the ui...
This is due to https://github.com/golang/go/issues/46099. It can be fixed using older MinGW version.
Add AddImageQuad method implemented in https://github.com/inkyblackness/imgui-go/blob/44567f2af289573078d51719638e9b71c203e60e/imgui/imgui_draw.cpp#L1621 to Go wrapper
Based on #182
This is a pretty big update to work on. Since this update changes the API to send keystrokes from backend to imgui, this requires an API change. Also, this requires...
Yo, reffering to https://github.com/AllenDang/giu/issues/431 have you ever tought about compiling this wisth `GOOS=js GOARCH=wasm`?
What did I do: I am using the GoLand IDE and am working on an implementation of imgui with GLFW and OpenGL 3. I noticed that the Debbuger of GoLand...
I'm trying to make it so windows can only be moved via title bar... I *think* ConfigWindowsMoveFromTitleBarOnly is supposed to be configurable somewhere but I cannot see where. Is this...
imgui.h Assertion im of line 1752 in IM_ASSERT(Size > 0); It will prevent me from using PushColorWindowBg. Once I disable assertions, there will be no problems and no other problems....