Dalamud/imgui/Dalamud.Bindings.ImPlot/Generated/Functions/Functions.006.cs
2025-04-06 21:08:34 +02:00

5037 lines
130 KiB
C#

// ------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
// ------------------------------------------------------------------------------
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using HexaGen.Runtime;
using System.Numerics;
using Dalamud.Bindings.ImGui;
namespace Dalamud.Bindings.ImPlot
{
public unsafe partial class ImPlot
{
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, byte* xs, ref byte ys, int count, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (byte*)pys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, byte* xs, ref byte ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (byte*)pys, count, flags, offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, byte* xs, ref byte ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (byte*)pys, count, flags, offset, (int)(sizeof(sbyte)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, byte* xs, ref byte ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = labelId)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (byte*)pys, count, flags, (int)(0), (int)(sizeof(sbyte)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, byte* xs, ref byte ys, int count)
{
fixed (byte* plabelId = labelId)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (byte*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(sbyte)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, byte* xs, ref byte ys, int count, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (byte*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(sbyte)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, byte* xs, ref byte ys, int count, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (byte*)pys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, byte* xs, ref byte ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (byte* pys = &ys)
{
PlotLineNative(pStr0, xs, (byte*)pys, count, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, byte* xs, ref byte ys, int count, ImPlotLineFlags flags, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (byte* pys = &ys)
{
PlotLineNative(pStr0, xs, (byte*)pys, count, flags, offset, (int)(sizeof(sbyte)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, byte* xs, ref byte ys, int count, ImPlotLineFlags flags)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (byte* pys = &ys)
{
PlotLineNative(pStr0, xs, (byte*)pys, count, flags, (int)(0), (int)(sizeof(sbyte)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, byte* xs, ref byte ys, int count)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (byte* pys = &ys)
{
PlotLineNative(pStr0, xs, (byte*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(sbyte)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, byte* xs, ref byte ys, int count, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (byte* pys = &ys)
{
PlotLineNative(pStr0, xs, (byte*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(sbyte)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, byte* xs, ref byte ys, int count, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (byte* pys = &ys)
{
PlotLineNative(pStr0, xs, (byte*)pys, count, (ImPlotLineFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref byte xs, ref byte ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative(labelId, (byte*)pxs, (byte*)pys, count, flags, offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref byte xs, ref byte ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative(labelId, (byte*)pxs, (byte*)pys, count, flags, offset, (int)(sizeof(sbyte)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref byte xs, ref byte ys, int count, ImPlotLineFlags flags)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative(labelId, (byte*)pxs, (byte*)pys, count, flags, (int)(0), (int)(sizeof(sbyte)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref byte xs, ref byte ys, int count)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative(labelId, (byte*)pxs, (byte*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(sbyte)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref byte xs, ref byte ys, int count, int offset)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative(labelId, (byte*)pxs, (byte*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(sbyte)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref byte xs, ref byte ys, int count, int offset, int stride)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative(labelId, (byte*)pxs, (byte*)pys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref byte xs, ref byte ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, (byte*)pxs, (byte*)pys, count, flags, offset, stride);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref byte xs, ref byte ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, (byte*)pxs, (byte*)pys, count, flags, offset, (int)(sizeof(sbyte)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref byte xs, ref byte ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = &labelId)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, (byte*)pxs, (byte*)pys, count, flags, (int)(0), (int)(sizeof(sbyte)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref byte xs, ref byte ys, int count)
{
fixed (byte* plabelId = &labelId)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, (byte*)pxs, (byte*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(sbyte)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref byte xs, ref byte ys, int count, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, (byte*)pxs, (byte*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(sbyte)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref byte xs, ref byte ys, int count, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, (byte*)pxs, (byte*)pys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref byte xs, ref byte ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, (byte*)pxs, (byte*)pys, count, flags, offset, stride);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref byte xs, ref byte ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, (byte*)pxs, (byte*)pys, count, flags, offset, (int)(sizeof(sbyte)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref byte xs, ref byte ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = labelId)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, (byte*)pxs, (byte*)pys, count, flags, (int)(0), (int)(sizeof(sbyte)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref byte xs, ref byte ys, int count)
{
fixed (byte* plabelId = labelId)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, (byte*)pxs, (byte*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(sbyte)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref byte xs, ref byte ys, int count, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, (byte*)pxs, (byte*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(sbyte)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref byte xs, ref byte ys, int count, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative((byte*)plabelId, (byte*)pxs, (byte*)pys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref byte xs, ref byte ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative(pStr0, (byte*)pxs, (byte*)pys, count, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref byte xs, ref byte ys, int count, ImPlotLineFlags flags, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative(pStr0, (byte*)pxs, (byte*)pys, count, flags, offset, (int)(sizeof(sbyte)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref byte xs, ref byte ys, int count, ImPlotLineFlags flags)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative(pStr0, (byte*)pxs, (byte*)pys, count, flags, (int)(0), (int)(sizeof(sbyte)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref byte xs, ref byte ys, int count)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative(pStr0, (byte*)pxs, (byte*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(sbyte)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref byte xs, ref byte ys, int count, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative(pStr0, (byte*)pxs, (byte*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(sbyte)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref byte xs, ref byte ys, int count, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (byte* pxs = &xs)
{
fixed (byte* pys = &ys)
{
PlotLineNative(pStr0, (byte*)pxs, (byte*)pys, count, (ImPlotLineFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static void PlotLineNative(byte* labelId, short* xs, short* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
#if NET5_0_OR_GREATER
((delegate* unmanaged[Cdecl]<byte*, short*, short*, int, ImPlotLineFlags, int, int, void>)funcTable[66])(labelId, xs, ys, count, flags, offset, stride);
#else
((delegate* unmanaged[Cdecl]<nint, nint, nint, int, ImPlotLineFlags, int, int, void>)funcTable[66])((nint)labelId, (nint)xs, (nint)ys, count, flags, offset, stride);
#endif
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, short* xs, short* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
PlotLineNative(labelId, xs, ys, count, flags, offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, short* xs, short* ys, int count, ImPlotLineFlags flags, int offset)
{
PlotLineNative(labelId, xs, ys, count, flags, offset, (int)(sizeof(short)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, short* xs, short* ys, int count, ImPlotLineFlags flags)
{
PlotLineNative(labelId, xs, ys, count, flags, (int)(0), (int)(sizeof(short)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, short* xs, short* ys, int count)
{
PlotLineNative(labelId, xs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(short)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, short* xs, short* ys, int count, int offset)
{
PlotLineNative(labelId, xs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(short)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, short* xs, short* ys, int count, int offset, int stride)
{
PlotLineNative(labelId, xs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, short* xs, short* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, short* xs, short* ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, offset, (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, short* xs, short* ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, (int)(0), (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, short* xs, short* ys, int count)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, short* xs, short* ys, int count, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, short* xs, short* ys, int count, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, short* xs, short* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, short* xs, short* ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, offset, (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, short* xs, short* ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, (int)(0), (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, short* xs, short* ys, int count)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, short* xs, short* ys, int count, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, short* xs, short* ys, int count, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, short* xs, short* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, short* xs, short* ys, int count, ImPlotLineFlags flags, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, flags, offset, (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, short* xs, short* ys, int count, ImPlotLineFlags flags)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, flags, (int)(0), (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, short* xs, short* ys, int count)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, short* xs, short* ys, int count, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, short* xs, short* ys, int count, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, (ImPlotLineFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref short xs, short* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (short* pxs = &xs)
{
PlotLineNative(labelId, (short*)pxs, ys, count, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref short xs, short* ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (short* pxs = &xs)
{
PlotLineNative(labelId, (short*)pxs, ys, count, flags, offset, (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref short xs, short* ys, int count, ImPlotLineFlags flags)
{
fixed (short* pxs = &xs)
{
PlotLineNative(labelId, (short*)pxs, ys, count, flags, (int)(0), (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref short xs, short* ys, int count)
{
fixed (short* pxs = &xs)
{
PlotLineNative(labelId, (short*)pxs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref short xs, short* ys, int count, int offset)
{
fixed (short* pxs = &xs)
{
PlotLineNative(labelId, (short*)pxs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref short xs, short* ys, int count, int offset, int stride)
{
fixed (short* pxs = &xs)
{
PlotLineNative(labelId, (short*)pxs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref short xs, short* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (short*)pxs, ys, count, flags, offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref short xs, short* ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (short*)pxs, ys, count, flags, offset, (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref short xs, short* ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (short*)pxs, ys, count, flags, (int)(0), (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref short xs, short* ys, int count)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (short*)pxs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref short xs, short* ys, int count, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (short*)pxs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref short xs, short* ys, int count, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (short*)pxs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref short xs, short* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (short*)pxs, ys, count, flags, offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref short xs, short* ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (short*)pxs, ys, count, flags, offset, (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref short xs, short* ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (short*)pxs, ys, count, flags, (int)(0), (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref short xs, short* ys, int count)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (short*)pxs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref short xs, short* ys, int count, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (short*)pxs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref short xs, short* ys, int count, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (short*)pxs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref short xs, short* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pxs = &xs)
{
PlotLineNative(pStr0, (short*)pxs, ys, count, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref short xs, short* ys, int count, ImPlotLineFlags flags, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pxs = &xs)
{
PlotLineNative(pStr0, (short*)pxs, ys, count, flags, offset, (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref short xs, short* ys, int count, ImPlotLineFlags flags)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pxs = &xs)
{
PlotLineNative(pStr0, (short*)pxs, ys, count, flags, (int)(0), (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref short xs, short* ys, int count)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pxs = &xs)
{
PlotLineNative(pStr0, (short*)pxs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref short xs, short* ys, int count, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pxs = &xs)
{
PlotLineNative(pStr0, (short*)pxs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref short xs, short* ys, int count, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pxs = &xs)
{
PlotLineNative(pStr0, (short*)pxs, ys, count, (ImPlotLineFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, short* xs, ref short ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (short* pys = &ys)
{
PlotLineNative(labelId, xs, (short*)pys, count, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, short* xs, ref short ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (short* pys = &ys)
{
PlotLineNative(labelId, xs, (short*)pys, count, flags, offset, (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, short* xs, ref short ys, int count, ImPlotLineFlags flags)
{
fixed (short* pys = &ys)
{
PlotLineNative(labelId, xs, (short*)pys, count, flags, (int)(0), (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, short* xs, ref short ys, int count)
{
fixed (short* pys = &ys)
{
PlotLineNative(labelId, xs, (short*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, short* xs, ref short ys, int count, int offset)
{
fixed (short* pys = &ys)
{
PlotLineNative(labelId, xs, (short*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, short* xs, ref short ys, int count, int offset, int stride)
{
fixed (short* pys = &ys)
{
PlotLineNative(labelId, xs, (short*)pys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, short* xs, ref short ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (short*)pys, count, flags, offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, short* xs, ref short ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (short*)pys, count, flags, offset, (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, short* xs, ref short ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (short*)pys, count, flags, (int)(0), (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, short* xs, ref short ys, int count)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (short*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, short* xs, ref short ys, int count, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (short*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, short* xs, ref short ys, int count, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (short*)pys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, short* xs, ref short ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (short*)pys, count, flags, offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, short* xs, ref short ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (short*)pys, count, flags, offset, (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, short* xs, ref short ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (short*)pys, count, flags, (int)(0), (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, short* xs, ref short ys, int count)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (short*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, short* xs, ref short ys, int count, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (short*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, short* xs, ref short ys, int count, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (short*)pys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, short* xs, ref short ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pys = &ys)
{
PlotLineNative(pStr0, xs, (short*)pys, count, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, short* xs, ref short ys, int count, ImPlotLineFlags flags, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pys = &ys)
{
PlotLineNative(pStr0, xs, (short*)pys, count, flags, offset, (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, short* xs, ref short ys, int count, ImPlotLineFlags flags)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pys = &ys)
{
PlotLineNative(pStr0, xs, (short*)pys, count, flags, (int)(0), (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, short* xs, ref short ys, int count)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pys = &ys)
{
PlotLineNative(pStr0, xs, (short*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, short* xs, ref short ys, int count, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pys = &ys)
{
PlotLineNative(pStr0, xs, (short*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, short* xs, ref short ys, int count, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pys = &ys)
{
PlotLineNative(pStr0, xs, (short*)pys, count, (ImPlotLineFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref short xs, ref short ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative(labelId, (short*)pxs, (short*)pys, count, flags, offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref short xs, ref short ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative(labelId, (short*)pxs, (short*)pys, count, flags, offset, (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref short xs, ref short ys, int count, ImPlotLineFlags flags)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative(labelId, (short*)pxs, (short*)pys, count, flags, (int)(0), (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref short xs, ref short ys, int count)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative(labelId, (short*)pxs, (short*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref short xs, ref short ys, int count, int offset)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative(labelId, (short*)pxs, (short*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(short)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref short xs, ref short ys, int count, int offset, int stride)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative(labelId, (short*)pxs, (short*)pys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref short xs, ref short ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, (short*)pxs, (short*)pys, count, flags, offset, stride);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref short xs, ref short ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, (short*)pxs, (short*)pys, count, flags, offset, (int)(sizeof(short)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref short xs, ref short ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, (short*)pxs, (short*)pys, count, flags, (int)(0), (int)(sizeof(short)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref short xs, ref short ys, int count)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, (short*)pxs, (short*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(short)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref short xs, ref short ys, int count, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, (short*)pxs, (short*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(short)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref short xs, ref short ys, int count, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, (short*)pxs, (short*)pys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref short xs, ref short ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, (short*)pxs, (short*)pys, count, flags, offset, stride);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref short xs, ref short ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, (short*)pxs, (short*)pys, count, flags, offset, (int)(sizeof(short)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref short xs, ref short ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, (short*)pxs, (short*)pys, count, flags, (int)(0), (int)(sizeof(short)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref short xs, ref short ys, int count)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, (short*)pxs, (short*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(short)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref short xs, ref short ys, int count, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, (short*)pxs, (short*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(short)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref short xs, ref short ys, int count, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative((byte*)plabelId, (short*)pxs, (short*)pys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref short xs, ref short ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative(pStr0, (short*)pxs, (short*)pys, count, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref short xs, ref short ys, int count, ImPlotLineFlags flags, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative(pStr0, (short*)pxs, (short*)pys, count, flags, offset, (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref short xs, ref short ys, int count, ImPlotLineFlags flags)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative(pStr0, (short*)pxs, (short*)pys, count, flags, (int)(0), (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref short xs, ref short ys, int count)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative(pStr0, (short*)pxs, (short*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref short xs, ref short ys, int count, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative(pStr0, (short*)pxs, (short*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref short xs, ref short ys, int count, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (short* pxs = &xs)
{
fixed (short* pys = &ys)
{
PlotLineNative(pStr0, (short*)pxs, (short*)pys, count, (ImPlotLineFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static void PlotLineNative(byte* labelId, ushort* xs, ushort* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
#if NET5_0_OR_GREATER
((delegate* unmanaged[Cdecl]<byte*, ushort*, ushort*, int, ImPlotLineFlags, int, int, void>)funcTable[67])(labelId, xs, ys, count, flags, offset, stride);
#else
((delegate* unmanaged[Cdecl]<nint, nint, nint, int, ImPlotLineFlags, int, int, void>)funcTable[67])((nint)labelId, (nint)xs, (nint)ys, count, flags, offset, stride);
#endif
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ushort* xs, ushort* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
PlotLineNative(labelId, xs, ys, count, flags, offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ushort* xs, ushort* ys, int count, ImPlotLineFlags flags, int offset)
{
PlotLineNative(labelId, xs, ys, count, flags, offset, (int)(sizeof(ushort)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ushort* xs, ushort* ys, int count, ImPlotLineFlags flags)
{
PlotLineNative(labelId, xs, ys, count, flags, (int)(0), (int)(sizeof(ushort)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ushort* xs, ushort* ys, int count)
{
PlotLineNative(labelId, xs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(ushort)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ushort* xs, ushort* ys, int count, int offset)
{
PlotLineNative(labelId, xs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(ushort)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ushort* xs, ushort* ys, int count, int offset, int stride)
{
PlotLineNative(labelId, xs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ushort* xs, ushort* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ushort* xs, ushort* ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, offset, (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ushort* xs, ushort* ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, (int)(0), (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ushort* xs, ushort* ys, int count)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ushort* xs, ushort* ys, int count, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ushort* xs, ushort* ys, int count, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ushort* xs, ushort* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ushort* xs, ushort* ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, offset, (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ushort* xs, ushort* ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, (int)(0), (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ushort* xs, ushort* ys, int count)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ushort* xs, ushort* ys, int count, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ushort* xs, ushort* ys, int count, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ushort* xs, ushort* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ushort* xs, ushort* ys, int count, ImPlotLineFlags flags, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, flags, offset, (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ushort* xs, ushort* ys, int count, ImPlotLineFlags flags)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, flags, (int)(0), (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ushort* xs, ushort* ys, int count)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ushort* xs, ushort* ys, int count, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ushort* xs, ushort* ys, int count, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, (ImPlotLineFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref ushort xs, ushort* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative(labelId, (ushort*)pxs, ys, count, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref ushort xs, ushort* ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative(labelId, (ushort*)pxs, ys, count, flags, offset, (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref ushort xs, ushort* ys, int count, ImPlotLineFlags flags)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative(labelId, (ushort*)pxs, ys, count, flags, (int)(0), (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref ushort xs, ushort* ys, int count)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative(labelId, (ushort*)pxs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref ushort xs, ushort* ys, int count, int offset)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative(labelId, (ushort*)pxs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref ushort xs, ushort* ys, int count, int offset, int stride)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative(labelId, (ushort*)pxs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref ushort xs, ushort* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, ys, count, flags, offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref ushort xs, ushort* ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, ys, count, flags, offset, (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref ushort xs, ushort* ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, ys, count, flags, (int)(0), (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref ushort xs, ushort* ys, int count)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref ushort xs, ushort* ys, int count, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref ushort xs, ushort* ys, int count, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref ushort xs, ushort* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, ys, count, flags, offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref ushort xs, ushort* ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, ys, count, flags, offset, (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref ushort xs, ushort* ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, ys, count, flags, (int)(0), (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref ushort xs, ushort* ys, int count)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref ushort xs, ushort* ys, int count, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref ushort xs, ushort* ys, int count, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref ushort xs, ushort* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pxs = &xs)
{
PlotLineNative(pStr0, (ushort*)pxs, ys, count, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref ushort xs, ushort* ys, int count, ImPlotLineFlags flags, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pxs = &xs)
{
PlotLineNative(pStr0, (ushort*)pxs, ys, count, flags, offset, (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref ushort xs, ushort* ys, int count, ImPlotLineFlags flags)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pxs = &xs)
{
PlotLineNative(pStr0, (ushort*)pxs, ys, count, flags, (int)(0), (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref ushort xs, ushort* ys, int count)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pxs = &xs)
{
PlotLineNative(pStr0, (ushort*)pxs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref ushort xs, ushort* ys, int count, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pxs = &xs)
{
PlotLineNative(pStr0, (ushort*)pxs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref ushort xs, ushort* ys, int count, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pxs = &xs)
{
PlotLineNative(pStr0, (ushort*)pxs, ys, count, (ImPlotLineFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ushort* xs, ref ushort ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(labelId, xs, (ushort*)pys, count, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ushort* xs, ref ushort ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(labelId, xs, (ushort*)pys, count, flags, offset, (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ushort* xs, ref ushort ys, int count, ImPlotLineFlags flags)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(labelId, xs, (ushort*)pys, count, flags, (int)(0), (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ushort* xs, ref ushort ys, int count)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(labelId, xs, (ushort*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ushort* xs, ref ushort ys, int count, int offset)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(labelId, xs, (ushort*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ushort* xs, ref ushort ys, int count, int offset, int stride)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(labelId, xs, (ushort*)pys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ushort* xs, ref ushort ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (ushort*)pys, count, flags, offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ushort* xs, ref ushort ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (ushort*)pys, count, flags, offset, (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ushort* xs, ref ushort ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (ushort*)pys, count, flags, (int)(0), (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ushort* xs, ref ushort ys, int count)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (ushort*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ushort* xs, ref ushort ys, int count, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (ushort*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ushort* xs, ref ushort ys, int count, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (ushort*)pys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ushort* xs, ref ushort ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (ushort*)pys, count, flags, offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ushort* xs, ref ushort ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (ushort*)pys, count, flags, offset, (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ushort* xs, ref ushort ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (ushort*)pys, count, flags, (int)(0), (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ushort* xs, ref ushort ys, int count)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (ushort*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ushort* xs, ref ushort ys, int count, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (ushort*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ushort* xs, ref ushort ys, int count, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, xs, (ushort*)pys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ushort* xs, ref ushort ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pys = &ys)
{
PlotLineNative(pStr0, xs, (ushort*)pys, count, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ushort* xs, ref ushort ys, int count, ImPlotLineFlags flags, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pys = &ys)
{
PlotLineNative(pStr0, xs, (ushort*)pys, count, flags, offset, (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ushort* xs, ref ushort ys, int count, ImPlotLineFlags flags)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pys = &ys)
{
PlotLineNative(pStr0, xs, (ushort*)pys, count, flags, (int)(0), (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ushort* xs, ref ushort ys, int count)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pys = &ys)
{
PlotLineNative(pStr0, xs, (ushort*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ushort* xs, ref ushort ys, int count, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pys = &ys)
{
PlotLineNative(pStr0, xs, (ushort*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ushort* xs, ref ushort ys, int count, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pys = &ys)
{
PlotLineNative(pStr0, xs, (ushort*)pys, count, (ImPlotLineFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref ushort xs, ref ushort ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(labelId, (ushort*)pxs, (ushort*)pys, count, flags, offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref ushort xs, ref ushort ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(labelId, (ushort*)pxs, (ushort*)pys, count, flags, offset, (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref ushort xs, ref ushort ys, int count, ImPlotLineFlags flags)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(labelId, (ushort*)pxs, (ushort*)pys, count, flags, (int)(0), (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref ushort xs, ref ushort ys, int count)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(labelId, (ushort*)pxs, (ushort*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref ushort xs, ref ushort ys, int count, int offset)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(labelId, (ushort*)pxs, (ushort*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(ushort)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref ushort xs, ref ushort ys, int count, int offset, int stride)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(labelId, (ushort*)pxs, (ushort*)pys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref ushort xs, ref ushort ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys, count, flags, offset, stride);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref ushort xs, ref ushort ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys, count, flags, offset, (int)(sizeof(ushort)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref ushort xs, ref ushort ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys, count, flags, (int)(0), (int)(sizeof(ushort)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref ushort xs, ref ushort ys, int count)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(ushort)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref ushort xs, ref ushort ys, int count, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(ushort)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref ushort xs, ref ushort ys, int count, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref ushort xs, ref ushort ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys, count, flags, offset, stride);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref ushort xs, ref ushort ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys, count, flags, offset, (int)(sizeof(ushort)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref ushort xs, ref ushort ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys, count, flags, (int)(0), (int)(sizeof(ushort)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref ushort xs, ref ushort ys, int count)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(ushort)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref ushort xs, ref ushort ys, int count, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(ushort)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref ushort xs, ref ushort ys, int count, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref ushort xs, ref ushort ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(pStr0, (ushort*)pxs, (ushort*)pys, count, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref ushort xs, ref ushort ys, int count, ImPlotLineFlags flags, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(pStr0, (ushort*)pxs, (ushort*)pys, count, flags, offset, (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref ushort xs, ref ushort ys, int count, ImPlotLineFlags flags)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(pStr0, (ushort*)pxs, (ushort*)pys, count, flags, (int)(0), (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref ushort xs, ref ushort ys, int count)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(pStr0, (ushort*)pxs, (ushort*)pys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref ushort xs, ref ushort ys, int count, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(pStr0, (ushort*)pxs, (ushort*)pys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref ushort xs, ref ushort ys, int count, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (ushort* pxs = &xs)
{
fixed (ushort* pys = &ys)
{
PlotLineNative(pStr0, (ushort*)pxs, (ushort*)pys, count, (ImPlotLineFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static void PlotLineNative(byte* labelId, int* xs, int* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
#if NET5_0_OR_GREATER
((delegate* unmanaged[Cdecl]<byte*, int*, int*, int, ImPlotLineFlags, int, int, void>)funcTable[68])(labelId, xs, ys, count, flags, offset, stride);
#else
((delegate* unmanaged[Cdecl]<nint, nint, nint, int, ImPlotLineFlags, int, int, void>)funcTable[68])((nint)labelId, (nint)xs, (nint)ys, count, flags, offset, stride);
#endif
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, int* xs, int* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
PlotLineNative(labelId, xs, ys, count, flags, offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, int* xs, int* ys, int count, ImPlotLineFlags flags, int offset)
{
PlotLineNative(labelId, xs, ys, count, flags, offset, (int)(sizeof(int)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, int* xs, int* ys, int count, ImPlotLineFlags flags)
{
PlotLineNative(labelId, xs, ys, count, flags, (int)(0), (int)(sizeof(int)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, int* xs, int* ys, int count)
{
PlotLineNative(labelId, xs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(int)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, int* xs, int* ys, int count, int offset)
{
PlotLineNative(labelId, xs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(int)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, int* xs, int* ys, int count, int offset, int stride)
{
PlotLineNative(labelId, xs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, int* xs, int* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, int* xs, int* ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, offset, (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, int* xs, int* ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, (int)(0), (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, int* xs, int* ys, int count)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, int* xs, int* ys, int count, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, int* xs, int* ys, int count, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, int* xs, int* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, int* xs, int* ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, offset, (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, int* xs, int* ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, flags, (int)(0), (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, int* xs, int* ys, int count)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, int* xs, int* ys, int count, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, int* xs, int* ys, int count, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotLineNative((byte*)plabelId, xs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, int* xs, int* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, int* xs, int* ys, int count, ImPlotLineFlags flags, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, flags, offset, (int)(sizeof(int)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, int* xs, int* ys, int count, ImPlotLineFlags flags)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, flags, (int)(0), (int)(sizeof(int)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, int* xs, int* ys, int count)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(int)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, int* xs, int* ys, int count, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(int)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, int* xs, int* ys, int count, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
PlotLineNative(pStr0, xs, ys, count, (ImPlotLineFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref int xs, int* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (int* pxs = &xs)
{
PlotLineNative(labelId, (int*)pxs, ys, count, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref int xs, int* ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (int* pxs = &xs)
{
PlotLineNative(labelId, (int*)pxs, ys, count, flags, offset, (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref int xs, int* ys, int count, ImPlotLineFlags flags)
{
fixed (int* pxs = &xs)
{
PlotLineNative(labelId, (int*)pxs, ys, count, flags, (int)(0), (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref int xs, int* ys, int count)
{
fixed (int* pxs = &xs)
{
PlotLineNative(labelId, (int*)pxs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref int xs, int* ys, int count, int offset)
{
fixed (int* pxs = &xs)
{
PlotLineNative(labelId, (int*)pxs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(byte* labelId, ref int xs, int* ys, int count, int offset, int stride)
{
fixed (int* pxs = &xs)
{
PlotLineNative(labelId, (int*)pxs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref int xs, int* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (int* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (int*)pxs, ys, count, flags, offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref int xs, int* ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (int* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (int*)pxs, ys, count, flags, offset, (int)(sizeof(int)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref int xs, int* ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = &labelId)
{
fixed (int* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (int*)pxs, ys, count, flags, (int)(0), (int)(sizeof(int)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref int xs, int* ys, int count)
{
fixed (byte* plabelId = &labelId)
{
fixed (int* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (int*)pxs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(int)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref int xs, int* ys, int count, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (int* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (int*)pxs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(int)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ref byte labelId, ref int xs, int* ys, int count, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (int* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (int*)pxs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref int xs, int* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (int* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (int*)pxs, ys, count, flags, offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref int xs, int* ys, int count, ImPlotLineFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (int* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (int*)pxs, ys, count, flags, offset, (int)(sizeof(int)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref int xs, int* ys, int count, ImPlotLineFlags flags)
{
fixed (byte* plabelId = labelId)
{
fixed (int* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (int*)pxs, ys, count, flags, (int)(0), (int)(sizeof(int)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref int xs, int* ys, int count)
{
fixed (byte* plabelId = labelId)
{
fixed (int* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (int*)pxs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(int)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref int xs, int* ys, int count, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (int* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (int*)pxs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(int)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(ReadOnlySpan<byte> labelId, ref int xs, int* ys, int count, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (int* pxs = &xs)
{
PlotLineNative((byte*)plabelId, (int*)pxs, ys, count, (ImPlotLineFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref int xs, int* ys, int count, ImPlotLineFlags flags, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (int* pxs = &xs)
{
PlotLineNative(pStr0, (int*)pxs, ys, count, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref int xs, int* ys, int count, ImPlotLineFlags flags, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (int* pxs = &xs)
{
PlotLineNative(pStr0, (int*)pxs, ys, count, flags, offset, (int)(sizeof(int)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref int xs, int* ys, int count, ImPlotLineFlags flags)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (int* pxs = &xs)
{
PlotLineNative(pStr0, (int*)pxs, ys, count, flags, (int)(0), (int)(sizeof(int)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref int xs, int* ys, int count)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (int* pxs = &xs)
{
PlotLineNative(pStr0, (int*)pxs, ys, count, (ImPlotLineFlags)(0), (int)(0), (int)(sizeof(int)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref int xs, int* ys, int count, int offset)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (int* pxs = &xs)
{
PlotLineNative(pStr0, (int*)pxs, ys, count, (ImPlotLineFlags)(0), offset, (int)(sizeof(int)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotLine(string labelId, ref int xs, int* ys, int count, int offset, int stride)
{
byte* pStr0 = null;
int pStrSize0 = 0;
if (labelId != null)
{
pStrSize0 = Utils.GetByteCountUTF8(labelId);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
pStr0 = Utils.Alloc<byte>(pStrSize0 + 1);
}
else
{
byte* pStrStack0 = stackalloc byte[pStrSize0 + 1];
pStr0 = pStrStack0;
}
int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0);
pStr0[pStrOffset0] = 0;
}
fixed (int* pxs = &xs)
{
PlotLineNative(pStr0, (int*)pxs, ys, count, (ImPlotLineFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
}