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

Incorrect type for ImTextureID

Open CasualPokePlayer opened this issue 8 months ago • 1 comments

ImTextureID was changed to ImU64 (i.e. always 64 bits) since v1.91.4. Before, it was a void*. ImGui.NET generation has ImTextureID map to IntPtr, correct for older versions of ImGui, but not newer versions (including the latest v1.91.6.1 release). For newer versions, it should be a ulong rather.

CasualPokePlayer avatar Mar 05 '25 09:03 CasualPokePlayer