mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-15 12:27:43 +01:00
Regenerate bindings
This commit is contained in:
parent
6078c42963
commit
e559ae6b20
310 changed files with 361033 additions and 717041 deletions
|
|
@ -1178,7 +1178,7 @@ namespace Dalamud.Bindings.ImPlot
|
|||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
public unsafe void ExtendFitWith(ImPlotAxis* alt, double v, double vAlt)
|
||||
public unsafe void ExtendFitWith(ImPlotAxisPtr alt, double v, double vAlt)
|
||||
{
|
||||
ImPlot.ExtendFitWithNative(Handle, alt, v, vAlt);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -184,93 +184,6 @@ namespace Dalamud.Bindings.ImPlot
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
public unsafe int Append(byte* name, ref uint keys, int count, bool qual)
|
||||
{
|
||||
fixed (ImPlotColormapData* @this = &this)
|
||||
{
|
||||
fixed (uint* pkeys = &keys)
|
||||
{
|
||||
int ret = ImPlot.AppendNative(@this, name, (uint*)pkeys, count, qual ? (byte)1 : (byte)0);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
public unsafe int Append(ref byte name, ref uint keys, int count, bool qual)
|
||||
{
|
||||
fixed (ImPlotColormapData* @this = &this)
|
||||
{
|
||||
fixed (byte* pname = &name)
|
||||
{
|
||||
fixed (uint* pkeys = &keys)
|
||||
{
|
||||
int ret = ImPlot.AppendNative(@this, (byte*)pname, (uint*)pkeys, count, qual ? (byte)1 : (byte)0);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
public unsafe int Append(ReadOnlySpan<byte> name, ref uint keys, int count, bool qual)
|
||||
{
|
||||
fixed (ImPlotColormapData* @this = &this)
|
||||
{
|
||||
fixed (byte* pname = name)
|
||||
{
|
||||
fixed (uint* pkeys = &keys)
|
||||
{
|
||||
int ret = ImPlot.AppendNative(@this, (byte*)pname, (uint*)pkeys, count, qual ? (byte)1 : (byte)0);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
public unsafe int Append(string name, ref uint keys, int count, bool qual)
|
||||
{
|
||||
fixed (ImPlotColormapData* @this = &this)
|
||||
{
|
||||
byte* pStr0 = null;
|
||||
int pStrSize0 = 0;
|
||||
if (name != null)
|
||||
{
|
||||
pStrSize0 = Utils.GetByteCountUTF8(name);
|
||||
if (pStrSize0 >= Utils.MaxStackallocSize)
|
||||
{
|
||||
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
|
||||
}
|
||||
else
|
||||
{
|
||||
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
|
||||
pStr0 = pStrStack0;
|
||||
}
|
||||
int pStrOffset0 = Utils.EncodeStringUTF8(name, pStr0, pStrSize0);
|
||||
pStr0[pStrOffset0] = 0;
|
||||
}
|
||||
fixed (uint* pkeys = &keys)
|
||||
{
|
||||
int ret = ImPlot.AppendNative(@this, pStr0, (uint*)pkeys, count, qual ? (byte)1 : (byte)0);
|
||||
if (pStrSize0 >= Utils.MaxStackallocSize)
|
||||
{
|
||||
Utils.Free(pStr0);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
|
|
@ -657,81 +570,6 @@ namespace Dalamud.Bindings.ImPlot
|
|||
return ret;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
public unsafe int Append(byte* name, ref uint keys, int count, bool qual)
|
||||
{
|
||||
fixed (uint* pkeys = &keys)
|
||||
{
|
||||
int ret = ImPlot.AppendNative(Handle, name, (uint*)pkeys, count, qual ? (byte)1 : (byte)0);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
public unsafe int Append(ref byte name, ref uint keys, int count, bool qual)
|
||||
{
|
||||
fixed (byte* pname = &name)
|
||||
{
|
||||
fixed (uint* pkeys = &keys)
|
||||
{
|
||||
int ret = ImPlot.AppendNative(Handle, (byte*)pname, (uint*)pkeys, count, qual ? (byte)1 : (byte)0);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
public unsafe int Append(ReadOnlySpan<byte> name, ref uint keys, int count, bool qual)
|
||||
{
|
||||
fixed (byte* pname = name)
|
||||
{
|
||||
fixed (uint* pkeys = &keys)
|
||||
{
|
||||
int ret = ImPlot.AppendNative(Handle, (byte*)pname, (uint*)pkeys, count, qual ? (byte)1 : (byte)0);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
public unsafe int Append(string name, ref uint keys, int count, bool qual)
|
||||
{
|
||||
byte* pStr0 = null;
|
||||
int pStrSize0 = 0;
|
||||
if (name != null)
|
||||
{
|
||||
pStrSize0 = Utils.GetByteCountUTF8(name);
|
||||
if (pStrSize0 >= Utils.MaxStackallocSize)
|
||||
{
|
||||
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
|
||||
}
|
||||
else
|
||||
{
|
||||
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
|
||||
pStr0 = pStrStack0;
|
||||
}
|
||||
int pStrOffset0 = Utils.EncodeStringUTF8(name, pStr0, pStrSize0);
|
||||
pStr0[pStrOffset0] = 0;
|
||||
}
|
||||
fixed (uint* pkeys = &keys)
|
||||
{
|
||||
int ret = ImPlot.AppendNative(Handle, pStr0, (uint*)pkeys, count, qual ? (byte)1 : (byte)0);
|
||||
if (pStrSize0 >= Utils.MaxStackallocSize)
|
||||
{
|
||||
Utils.Free(pStr0);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue