Merge branch 'master' into memory_editor

internals
dpethes 7 years ago
commit 426880e90e
  1. BIN
      deps/cimgui/win7-x64/cimgui.dll
  2. 12
      src/ImGui.NET/ImGui.cs
  3. 2
      src/ImGui.NET/ImGuiNative.cs

Binary file not shown.

@ -93,9 +93,12 @@ namespace ImGuiNET
ImGuiNative.igTextWrapped(text);
}
public static void TextUnformatted(string message)
public static unsafe void TextUnformatted(string message)
{
ImGuiNative.igTextUnformatted(message, null);
fixed (byte* bytes = System.Text.Encoding.UTF8.GetBytes(message))
{
ImGuiNative.igTextUnformatted(bytes, null);
}
}
public static void LabelText(string label, string text)
@ -942,11 +945,6 @@ namespace ImGuiNET
ImGuiNative.igOpenPopup(id);
}
public static void SameLine()
{
ImGuiNative.igSameLine(0, 0);
}
public static void SameLine(float localPositionX = 0, float spacingW = -1.0f)
{
ImGuiNative.igSameLine(localPositionX, spacingW);

@ -272,7 +272,7 @@ namespace ImGuiNET
public static extern void igTextWrapped(string fmt);
[DllImport(cimguiLib)]
public static extern void igTextUnformatted(string text, string text_end);
public static extern void igTextUnformatted(byte* text, byte* text_end);
[DllImport(cimguiLib)]
public static extern void igLabelText(string label, string fmt);

Loading…
Cancel
Save