Regenerate bindings

This commit is contained in:
goaaats 2025-07-20 01:23:58 +02:00
parent 6078c42963
commit e559ae6b20
310 changed files with 361033 additions and 717041 deletions

View file

@ -17,8 +17,7 @@ using System.Numerics;
namespace Dalamud.Bindings.ImGui
{
/// <summary>
/// Helper to build glyph ranges from textstring data. Feed your application stringscharacters to it then call BuildRanges().<br/>
/// This is essentially a tightly packed of vector of 64k booleans = 8KB storage.<br/>
/// To be documented.
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public partial struct ImFontGlyphRangesBuilder
@ -60,20 +59,6 @@ namespace Dalamud.Bindings.ImGui
}
}
/// <summary>
/// To be documented.
/// </summary>
public unsafe void AddRanges(ref ushort ranges)
{
fixed (ImFontGlyphRangesBuilder* @this = &this)
{
fixed (ushort* pranges = &ranges)
{
ImGui.AddRangesNative(@this, (ushort*)pranges);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
@ -584,18 +569,6 @@ namespace Dalamud.Bindings.ImGui
}
}
/// <summary>
/// To be documented.
/// </summary>
public unsafe bool GetBit(ulong n)
{
fixed (ImFontGlyphRangesBuilder* @this = &this)
{
byte ret = ImGui.GetBitNative(@this, n);
return ret != 0;
}
}
/// <summary>
/// To be documented.
/// </summary>
@ -608,17 +581,6 @@ namespace Dalamud.Bindings.ImGui
}
}
/// <summary>
/// To be documented.
/// </summary>
public unsafe void SetBit(ulong n)
{
fixed (ImFontGlyphRangesBuilder* @this = &this)
{
ImGui.SetBitNative(@this, n);
}
}
/// <summary>
/// To be documented.
/// </summary>
@ -693,17 +655,6 @@ namespace Dalamud.Bindings.ImGui
ImGui.AddRangesNative(Handle, ranges);
}
/// <summary>
/// To be documented.
/// </summary>
public unsafe void AddRanges(ref ushort ranges)
{
fixed (ushort* pranges = &ranges)
{
ImGui.AddRangesNative(Handle, (ushort*)pranges);
}
}
/// <summary>
/// To be documented.
/// </summary>
@ -1142,15 +1093,6 @@ namespace Dalamud.Bindings.ImGui
ImGui.DestroyNative(Handle);
}
/// <summary>
/// To be documented.
/// </summary>
public unsafe bool GetBit(ulong n)
{
byte ret = ImGui.GetBitNative(Handle, n);
return ret != 0;
}
/// <summary>
/// To be documented.
/// </summary>
@ -1160,14 +1102,6 @@ namespace Dalamud.Bindings.ImGui
return ret != 0;
}
/// <summary>
/// To be documented.
/// </summary>
public unsafe void SetBit(ulong n)
{
ImGui.SetBitNative(Handle, n);
}
/// <summary>
/// To be documented.
/// </summary>