Dalamud/imgui/Dalamud.Bindings.ImPlot/Generated/Functions/Functions.024.cs
2025-07-20 01:24:17 +02:00

5037 lines
146 KiB
C#
Generated

// ------------------------------------------------------------------------------
// <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 PlotBars(ref byte labelId, double* xs, ref double ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, xs, (double*)pys, count, barSize, flags, offset, (int)(sizeof(double)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, double* xs, ref double ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = &labelId)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, xs, (double*)pys, count, barSize, flags, (int)(0), (int)(sizeof(double)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, double* xs, ref double ys, int count, double barSize)
{
fixed (byte* plabelId = &labelId)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, xs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(double)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, double* xs, ref double ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, xs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(double)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, double* xs, ref double ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, xs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, double* xs, ref double ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, xs, (double*)pys, count, barSize, flags, offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, double* xs, ref double ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, xs, (double*)pys, count, barSize, flags, offset, (int)(sizeof(double)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, double* xs, ref double ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = labelId)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, xs, (double*)pys, count, barSize, flags, (int)(0), (int)(sizeof(double)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, double* xs, ref double ys, int count, double barSize)
{
fixed (byte* plabelId = labelId)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, xs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(double)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, double* xs, ref double ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, xs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(double)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, double* xs, ref double ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, xs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, double* xs, ref double ys, int count, double barSize, ImPlotBarsFlags 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 (double* pys = &ys)
{
PlotBarsNative(pStr0, xs, (double*)pys, count, barSize, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, double* xs, ref double ys, int count, double barSize, ImPlotBarsFlags 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 (double* pys = &ys)
{
PlotBarsNative(pStr0, xs, (double*)pys, count, barSize, flags, offset, (int)(sizeof(double)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, double* xs, ref double ys, int count, double barSize, ImPlotBarsFlags 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 (double* pys = &ys)
{
PlotBarsNative(pStr0, xs, (double*)pys, count, barSize, flags, (int)(0), (int)(sizeof(double)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, double* xs, ref double ys, int count, double barSize)
{
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 (double* pys = &ys)
{
PlotBarsNative(pStr0, xs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(double)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, double* xs, ref double ys, int count, double barSize, 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 (double* pys = &ys)
{
PlotBarsNative(pStr0, xs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(double)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, double* xs, ref double ys, int count, double barSize, 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 (double* pys = &ys)
{
PlotBarsNative(pStr0, xs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ref double xs, ref double ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative(labelId, (double*)pxs, (double*)pys, count, barSize, flags, offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ref double xs, ref double ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative(labelId, (double*)pxs, (double*)pys, count, barSize, flags, offset, (int)(sizeof(double)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ref double xs, ref double ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative(labelId, (double*)pxs, (double*)pys, count, barSize, flags, (int)(0), (int)(sizeof(double)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ref double xs, ref double ys, int count, double barSize)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative(labelId, (double*)pxs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(double)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ref double xs, ref double ys, int count, double barSize, int offset)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative(labelId, (double*)pxs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(double)));
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ref double xs, ref double ys, int count, double barSize, int offset, int stride)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative(labelId, (double*)pxs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ref double xs, ref double ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, (double*)pxs, (double*)pys, count, barSize, flags, offset, stride);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ref double xs, ref double ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, (double*)pxs, (double*)pys, count, barSize, flags, offset, (int)(sizeof(double)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ref double xs, ref double ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = &labelId)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, (double*)pxs, (double*)pys, count, barSize, flags, (int)(0), (int)(sizeof(double)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ref double xs, ref double ys, int count, double barSize)
{
fixed (byte* plabelId = &labelId)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, (double*)pxs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(double)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ref double xs, ref double ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = &labelId)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, (double*)pxs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(double)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ref double xs, ref double ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, (double*)pxs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ref double xs, ref double ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, (double*)pxs, (double*)pys, count, barSize, flags, offset, stride);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ref double xs, ref double ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, (double*)pxs, (double*)pys, count, barSize, flags, offset, (int)(sizeof(double)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ref double xs, ref double ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = labelId)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, (double*)pxs, (double*)pys, count, barSize, flags, (int)(0), (int)(sizeof(double)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ref double xs, ref double ys, int count, double barSize)
{
fixed (byte* plabelId = labelId)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, (double*)pxs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(double)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ref double xs, ref double ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = labelId)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, (double*)pxs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(double)));
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ref double xs, ref double ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
fixed (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative((byte*)plabelId, (double*)pxs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ref double xs, ref double ys, int count, double barSize, ImPlotBarsFlags 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 (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative(pStr0, (double*)pxs, (double*)pys, count, barSize, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ref double xs, ref double ys, int count, double barSize, ImPlotBarsFlags 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 (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative(pStr0, (double*)pxs, (double*)pys, count, barSize, flags, offset, (int)(sizeof(double)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ref double xs, ref double ys, int count, double barSize, ImPlotBarsFlags 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 (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative(pStr0, (double*)pxs, (double*)pys, count, barSize, flags, (int)(0), (int)(sizeof(double)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ref double xs, ref double ys, int count, double barSize)
{
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 (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative(pStr0, (double*)pxs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(double)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ref double xs, ref double ys, int count, double barSize, 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 (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative(pStr0, (double*)pxs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(double)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ref double xs, ref double ys, int count, double barSize, 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 (double* pxs = &xs)
{
fixed (double* pys = &ys)
{
PlotBarsNative(pStr0, (double*)pxs, (double*)pys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
}
}
/// <summary>
/// To be documented.
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static void PlotBarsNative(byte* labelId, sbyte* xs, sbyte* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
#if NET5_0_OR_GREATER
((delegate* unmanaged[Cdecl]<byte*, sbyte*, sbyte*, int, double, ImPlotBarsFlags, int, int, void>)funcTable[157])(labelId, xs, ys, count, barSize, flags, offset, stride);
#else
((delegate* unmanaged[Cdecl]<nint, nint, nint, int, double, ImPlotBarsFlags, int, int, void>)funcTable[157])((nint)labelId, (nint)xs, (nint)ys, count, barSize, flags, offset, stride);
#endif
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, sbyte* xs, sbyte* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, sbyte* xs, sbyte* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(sbyte)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, sbyte* xs, sbyte* ys, int count, double barSize, ImPlotBarsFlags flags)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(sbyte)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, sbyte* xs, sbyte* ys, int count, double barSize)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(sbyte)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, sbyte* xs, sbyte* ys, int count, double barSize, int offset)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(sbyte)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, sbyte* xs, sbyte* ys, int count, double barSize, int offset, int stride)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, sbyte* xs, sbyte* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, sbyte* xs, sbyte* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(sbyte)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, sbyte* xs, sbyte* ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(sbyte)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, sbyte* xs, sbyte* ys, int count, double barSize)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(sbyte)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, sbyte* xs, sbyte* ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(sbyte)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, sbyte* xs, sbyte* ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, sbyte* xs, sbyte* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, sbyte* xs, sbyte* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(sbyte)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, sbyte* xs, sbyte* ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(sbyte)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, sbyte* xs, sbyte* ys, int count, double barSize)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(sbyte)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, sbyte* xs, sbyte* ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(sbyte)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, sbyte* xs, sbyte* ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, sbyte* xs, sbyte* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, sbyte* xs, sbyte* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, offset, (int)(sizeof(sbyte)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, sbyte* xs, sbyte* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(sbyte)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, sbyte* xs, sbyte* ys, int count, double barSize)
{
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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(sbyte)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, sbyte* xs, sbyte* ys, int count, double barSize, 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(sbyte)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, sbyte* xs, sbyte* ys, int count, double barSize, 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static void PlotBarsNative(byte* labelId, byte* xs, byte* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
#if NET5_0_OR_GREATER
((delegate* unmanaged[Cdecl]<byte*, byte*, byte*, int, double, ImPlotBarsFlags, int, int, void>)funcTable[158])(labelId, xs, ys, count, barSize, flags, offset, stride);
#else
((delegate* unmanaged[Cdecl]<nint, nint, nint, int, double, ImPlotBarsFlags, int, int, void>)funcTable[158])((nint)labelId, (nint)xs, (nint)ys, count, barSize, flags, offset, stride);
#endif
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, byte* xs, byte* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, byte* xs, byte* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(byte)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, byte* xs, byte* ys, int count, double barSize, ImPlotBarsFlags flags)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(byte)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, byte* xs, byte* ys, int count, double barSize)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(byte)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, byte* xs, byte* ys, int count, double barSize, int offset)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(byte)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, byte* xs, byte* ys, int count, double barSize, int offset, int stride)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, byte* xs, byte* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, byte* xs, byte* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(byte)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, byte* xs, byte* ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(byte)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, byte* xs, byte* ys, int count, double barSize)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(byte)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, byte* xs, byte* ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(byte)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, byte* xs, byte* ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, byte* xs, byte* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, byte* xs, byte* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(byte)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, byte* xs, byte* ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(byte)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, byte* xs, byte* ys, int count, double barSize)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(byte)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, byte* xs, byte* ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(byte)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, byte* xs, byte* ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, byte* xs, byte* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, byte* xs, byte* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, offset, (int)(sizeof(byte)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, byte* xs, byte* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(byte)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, byte* xs, byte* ys, int count, double barSize)
{
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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(byte)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, byte* xs, byte* ys, int count, double barSize, 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(byte)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, byte* xs, byte* ys, int count, double barSize, 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static void PlotBarsNative(byte* labelId, short* xs, short* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
#if NET5_0_OR_GREATER
((delegate* unmanaged[Cdecl]<byte*, short*, short*, int, double, ImPlotBarsFlags, int, int, void>)funcTable[159])(labelId, xs, ys, count, barSize, flags, offset, stride);
#else
((delegate* unmanaged[Cdecl]<nint, nint, nint, int, double, ImPlotBarsFlags, int, int, void>)funcTable[159])((nint)labelId, (nint)xs, (nint)ys, count, barSize, flags, offset, stride);
#endif
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, short* xs, short* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, short* xs, short* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(short)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, short* xs, short* ys, int count, double barSize, ImPlotBarsFlags flags)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(short)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, short* xs, short* ys, int count, double barSize)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(short)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, short* xs, short* ys, int count, double barSize, int offset)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(short)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, short* xs, short* ys, int count, double barSize, int offset, int stride)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, short* xs, short* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, short* xs, short* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, short* xs, short* ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, short* xs, short* ys, int count, double barSize)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, short* xs, short* ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, short* xs, short* ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, short* xs, short* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, short* xs, short* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, short* xs, short* ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, short* xs, short* ys, int count, double barSize)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, short* xs, short* ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(short)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, short* xs, short* ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, short* xs, short* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, short* xs, short* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, offset, (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, short* xs, short* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, short* xs, short* ys, int count, double barSize)
{
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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, short* xs, short* ys, int count, double barSize, 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(short)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, short* xs, short* ys, int count, double barSize, 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static void PlotBarsNative(byte* labelId, ushort* xs, ushort* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
#if NET5_0_OR_GREATER
((delegate* unmanaged[Cdecl]<byte*, ushort*, ushort*, int, double, ImPlotBarsFlags, int, int, void>)funcTable[160])(labelId, xs, ys, count, barSize, flags, offset, stride);
#else
((delegate* unmanaged[Cdecl]<nint, nint, nint, int, double, ImPlotBarsFlags, int, int, void>)funcTable[160])((nint)labelId, (nint)xs, (nint)ys, count, barSize, flags, offset, stride);
#endif
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ushort* xs, ushort* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ushort* xs, ushort* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(ushort)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ushort* xs, ushort* ys, int count, double barSize, ImPlotBarsFlags flags)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(ushort)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ushort* xs, ushort* ys, int count, double barSize)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(ushort)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ushort* xs, ushort* ys, int count, double barSize, int offset)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(ushort)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ushort* xs, ushort* ys, int count, double barSize, int offset, int stride)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ushort* xs, ushort* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ushort* xs, ushort* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ushort* xs, ushort* ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ushort* xs, ushort* ys, int count, double barSize)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ushort* xs, ushort* ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ushort* xs, ushort* ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ushort* xs, ushort* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ushort* xs, ushort* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ushort* xs, ushort* ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ushort* xs, ushort* ys, int count, double barSize)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ushort* xs, ushort* ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(ushort)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ushort* xs, ushort* ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ushort* xs, ushort* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ushort* xs, ushort* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, offset, (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ushort* xs, ushort* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ushort* xs, ushort* ys, int count, double barSize)
{
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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ushort* xs, ushort* ys, int count, double barSize, 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(ushort)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ushort* xs, ushort* ys, int count, double barSize, 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static void PlotBarsNative(byte* labelId, int* xs, int* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
#if NET5_0_OR_GREATER
((delegate* unmanaged[Cdecl]<byte*, int*, int*, int, double, ImPlotBarsFlags, int, int, void>)funcTable[161])(labelId, xs, ys, count, barSize, flags, offset, stride);
#else
((delegate* unmanaged[Cdecl]<nint, nint, nint, int, double, ImPlotBarsFlags, int, int, void>)funcTable[161])((nint)labelId, (nint)xs, (nint)ys, count, barSize, flags, offset, stride);
#endif
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, int* xs, int* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, int* xs, int* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(int)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, int* xs, int* ys, int count, double barSize, ImPlotBarsFlags flags)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(int)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, int* xs, int* ys, int count, double barSize)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(int)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, int* xs, int* ys, int count, double barSize, int offset)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(int)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, int* xs, int* ys, int count, double barSize, int offset, int stride)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, int* xs, int* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, int* xs, int* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, int* xs, int* ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, int* xs, int* ys, int count, double barSize)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, int* xs, int* ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, int* xs, int* ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, int* xs, int* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, int* xs, int* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, int* xs, int* ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, int* xs, int* ys, int count, double barSize)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, int* xs, int* ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(int)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, int* xs, int* ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, int* xs, int* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, int* xs, int* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, offset, (int)(sizeof(int)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, int* xs, int* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(int)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, int* xs, int* ys, int count, double barSize)
{
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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(int)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, int* xs, int* ys, int count, double barSize, 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(int)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, int* xs, int* ys, int count, double barSize, 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static void PlotBarsNative(byte* labelId, uint* xs, uint* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
#if NET5_0_OR_GREATER
((delegate* unmanaged[Cdecl]<byte*, uint*, uint*, int, double, ImPlotBarsFlags, int, int, void>)funcTable[162])(labelId, xs, ys, count, barSize, flags, offset, stride);
#else
((delegate* unmanaged[Cdecl]<nint, nint, nint, int, double, ImPlotBarsFlags, int, int, void>)funcTable[162])((nint)labelId, (nint)xs, (nint)ys, count, barSize, flags, offset, stride);
#endif
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, uint* xs, uint* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, uint* xs, uint* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(uint)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, uint* xs, uint* ys, int count, double barSize, ImPlotBarsFlags flags)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(uint)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, uint* xs, uint* ys, int count, double barSize)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(uint)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, uint* xs, uint* ys, int count, double barSize, int offset)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(uint)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, uint* xs, uint* ys, int count, double barSize, int offset, int stride)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, uint* xs, uint* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, uint* xs, uint* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(uint)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, uint* xs, uint* ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(uint)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, uint* xs, uint* ys, int count, double barSize)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(uint)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, uint* xs, uint* ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(uint)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, uint* xs, uint* ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, uint* xs, uint* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, uint* xs, uint* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(uint)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, uint* xs, uint* ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(uint)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, uint* xs, uint* ys, int count, double barSize)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(uint)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, uint* xs, uint* ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(uint)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, uint* xs, uint* ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, uint* xs, uint* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, uint* xs, uint* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, offset, (int)(sizeof(uint)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, uint* xs, uint* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(uint)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, uint* xs, uint* ys, int count, double barSize)
{
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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(uint)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, uint* xs, uint* ys, int count, double barSize, 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(uint)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, uint* xs, uint* ys, int count, double barSize, 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static void PlotBarsNative(byte* labelId, long* xs, long* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
#if NET5_0_OR_GREATER
((delegate* unmanaged[Cdecl]<byte*, long*, long*, int, double, ImPlotBarsFlags, int, int, void>)funcTable[163])(labelId, xs, ys, count, barSize, flags, offset, stride);
#else
((delegate* unmanaged[Cdecl]<nint, nint, nint, int, double, ImPlotBarsFlags, int, int, void>)funcTable[163])((nint)labelId, (nint)xs, (nint)ys, count, barSize, flags, offset, stride);
#endif
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, long* xs, long* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, long* xs, long* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(long)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, long* xs, long* ys, int count, double barSize, ImPlotBarsFlags flags)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(long)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, long* xs, long* ys, int count, double barSize)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(long)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, long* xs, long* ys, int count, double barSize, int offset)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(long)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, long* xs, long* ys, int count, double barSize, int offset, int stride)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, long* xs, long* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, long* xs, long* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(long)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, long* xs, long* ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(long)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, long* xs, long* ys, int count, double barSize)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(long)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, long* xs, long* ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(long)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, long* xs, long* ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, long* xs, long* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, long* xs, long* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(long)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, long* xs, long* ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(long)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, long* xs, long* ys, int count, double barSize)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(long)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, long* xs, long* ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(long)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, long* xs, long* ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, long* xs, long* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, long* xs, long* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, offset, (int)(sizeof(long)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, long* xs, long* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(long)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, long* xs, long* ys, int count, double barSize)
{
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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(long)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, long* xs, long* ys, int count, double barSize, 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(long)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, long* xs, long* ys, int count, double barSize, 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static void PlotBarsNative(byte* labelId, ulong* xs, ulong* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
#if NET5_0_OR_GREATER
((delegate* unmanaged[Cdecl]<byte*, ulong*, ulong*, int, double, ImPlotBarsFlags, int, int, void>)funcTable[164])(labelId, xs, ys, count, barSize, flags, offset, stride);
#else
((delegate* unmanaged[Cdecl]<nint, nint, nint, int, double, ImPlotBarsFlags, int, int, void>)funcTable[164])((nint)labelId, (nint)xs, (nint)ys, count, barSize, flags, offset, stride);
#endif
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ulong* xs, ulong* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ulong* xs, ulong* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(ulong)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ulong* xs, ulong* ys, int count, double barSize, ImPlotBarsFlags flags)
{
PlotBarsNative(labelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(ulong)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ulong* xs, ulong* ys, int count, double barSize)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(ulong)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ulong* xs, ulong* ys, int count, double barSize, int offset)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(ulong)));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(byte* labelId, ulong* xs, ulong* ys, int count, double barSize, int offset, int stride)
{
PlotBarsNative(labelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ulong* xs, ulong* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ulong* xs, ulong* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(ulong)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ulong* xs, ulong* ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(ulong)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ulong* xs, ulong* ys, int count, double barSize)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(ulong)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ulong* xs, ulong* ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(ulong)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ref byte labelId, ulong* xs, ulong* ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = &labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ulong* xs, ulong* ys, int count, double barSize, ImPlotBarsFlags flags, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ulong* xs, ulong* ys, int count, double barSize, ImPlotBarsFlags flags, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, offset, (int)(sizeof(ulong)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ulong* xs, ulong* ys, int count, double barSize, ImPlotBarsFlags flags)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(ulong)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ulong* xs, ulong* ys, int count, double barSize)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(ulong)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ulong* xs, ulong* ys, int count, double barSize, int offset)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(ulong)));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(ReadOnlySpan<byte> labelId, ulong* xs, ulong* ys, int count, double barSize, int offset, int stride)
{
fixed (byte* plabelId = labelId)
{
PlotBarsNative((byte*)plabelId, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ulong* xs, ulong* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ulong* xs, ulong* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, offset, (int)(sizeof(ulong)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ulong* xs, ulong* ys, int count, double barSize, ImPlotBarsFlags 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, flags, (int)(0), (int)(sizeof(ulong)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ulong* xs, ulong* ys, int count, double barSize)
{
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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), (int)(0), (int)(sizeof(ulong)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ulong* xs, ulong* ys, int count, double barSize, 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, (int)(sizeof(ulong)));
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBars(string labelId, ulong* xs, ulong* ys, int count, double barSize, 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;
}
PlotBarsNative(pStr0, xs, ys, count, barSize, (ImPlotBarsFlags)(0), offset, stride);
if (pStrSize0 >= Utils.MaxStackallocSize)
{
Utils.Free(pStr0);
}
}
/// <summary>
/// To be documented.
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static void PlotBarGroupsNative(byte** labelIds, float* values, int itemCount, int groupCount, double groupSize, double shift, ImPlotBarGroupsFlags flags)
{
#if NET5_0_OR_GREATER
((delegate* unmanaged[Cdecl]<byte**, float*, int, int, double, double, ImPlotBarGroupsFlags, void>)funcTable[165])(labelIds, values, itemCount, groupCount, groupSize, shift, flags);
#else
((delegate* unmanaged[Cdecl]<nint, nint, int, int, double, double, ImPlotBarGroupsFlags, void>)funcTable[165])((nint)labelIds, (nint)values, itemCount, groupCount, groupSize, shift, flags);
#endif
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, float* values, int itemCount, int groupCount, double groupSize, double shift, ImPlotBarGroupsFlags flags)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, groupSize, shift, flags);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, float* values, int itemCount, int groupCount, double groupSize, double shift)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, groupSize, shift, (ImPlotBarGroupsFlags)(0));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, float* values, int itemCount, int groupCount, double groupSize)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, groupSize, (double)(0), (ImPlotBarGroupsFlags)(0));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, float* values, int itemCount, int groupCount)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, (double)(0.67), (double)(0), (ImPlotBarGroupsFlags)(0));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, float* values, int itemCount, int groupCount, double groupSize, ImPlotBarGroupsFlags flags)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, groupSize, (double)(0), flags);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, float* values, int itemCount, int groupCount, ImPlotBarGroupsFlags flags)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, (double)(0.67), (double)(0), flags);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, float* values, int itemCount, int groupCount, double groupSize, double shift, ImPlotBarGroupsFlags flags)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
PlotBarGroupsNative(pStrArray0, values, itemCount, groupCount, groupSize, shift, flags);
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, float* values, int itemCount, int groupCount, double groupSize, double shift)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
PlotBarGroupsNative(pStrArray0, values, itemCount, groupCount, groupSize, shift, (ImPlotBarGroupsFlags)(0));
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, float* values, int itemCount, int groupCount, double groupSize)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
PlotBarGroupsNative(pStrArray0, values, itemCount, groupCount, groupSize, (double)(0), (ImPlotBarGroupsFlags)(0));
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, float* values, int itemCount, int groupCount)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
PlotBarGroupsNative(pStrArray0, values, itemCount, groupCount, (double)(0.67), (double)(0), (ImPlotBarGroupsFlags)(0));
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, float* values, int itemCount, int groupCount, double groupSize, ImPlotBarGroupsFlags flags)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
PlotBarGroupsNative(pStrArray0, values, itemCount, groupCount, groupSize, (double)(0), flags);
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, float* values, int itemCount, int groupCount, ImPlotBarGroupsFlags flags)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
PlotBarGroupsNative(pStrArray0, values, itemCount, groupCount, (double)(0.67), (double)(0), flags);
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, ref float values, int itemCount, int groupCount, double groupSize, double shift, ImPlotBarGroupsFlags flags)
{
fixed (float* pvalues = &values)
{
PlotBarGroupsNative(labelIds, (float*)pvalues, itemCount, groupCount, groupSize, shift, flags);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, ref float values, int itemCount, int groupCount, double groupSize, double shift)
{
fixed (float* pvalues = &values)
{
PlotBarGroupsNative(labelIds, (float*)pvalues, itemCount, groupCount, groupSize, shift, (ImPlotBarGroupsFlags)(0));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, ref float values, int itemCount, int groupCount, double groupSize)
{
fixed (float* pvalues = &values)
{
PlotBarGroupsNative(labelIds, (float*)pvalues, itemCount, groupCount, groupSize, (double)(0), (ImPlotBarGroupsFlags)(0));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, ref float values, int itemCount, int groupCount)
{
fixed (float* pvalues = &values)
{
PlotBarGroupsNative(labelIds, (float*)pvalues, itemCount, groupCount, (double)(0.67), (double)(0), (ImPlotBarGroupsFlags)(0));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, ref float values, int itemCount, int groupCount, double groupSize, ImPlotBarGroupsFlags flags)
{
fixed (float* pvalues = &values)
{
PlotBarGroupsNative(labelIds, (float*)pvalues, itemCount, groupCount, groupSize, (double)(0), flags);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, ref float values, int itemCount, int groupCount, ImPlotBarGroupsFlags flags)
{
fixed (float* pvalues = &values)
{
PlotBarGroupsNative(labelIds, (float*)pvalues, itemCount, groupCount, (double)(0.67), (double)(0), flags);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, ref float values, int itemCount, int groupCount, double groupSize, double shift, ImPlotBarGroupsFlags flags)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
fixed (float* pvalues = &values)
{
PlotBarGroupsNative(pStrArray0, (float*)pvalues, itemCount, groupCount, groupSize, shift, flags);
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, ref float values, int itemCount, int groupCount, double groupSize, double shift)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
fixed (float* pvalues = &values)
{
PlotBarGroupsNative(pStrArray0, (float*)pvalues, itemCount, groupCount, groupSize, shift, (ImPlotBarGroupsFlags)(0));
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, ref float values, int itemCount, int groupCount, double groupSize)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
fixed (float* pvalues = &values)
{
PlotBarGroupsNative(pStrArray0, (float*)pvalues, itemCount, groupCount, groupSize, (double)(0), (ImPlotBarGroupsFlags)(0));
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, ref float values, int itemCount, int groupCount)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
fixed (float* pvalues = &values)
{
PlotBarGroupsNative(pStrArray0, (float*)pvalues, itemCount, groupCount, (double)(0.67), (double)(0), (ImPlotBarGroupsFlags)(0));
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, ref float values, int itemCount, int groupCount, double groupSize, ImPlotBarGroupsFlags flags)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
fixed (float* pvalues = &values)
{
PlotBarGroupsNative(pStrArray0, (float*)pvalues, itemCount, groupCount, groupSize, (double)(0), flags);
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, ref float values, int itemCount, int groupCount, ImPlotBarGroupsFlags flags)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
fixed (float* pvalues = &values)
{
PlotBarGroupsNative(pStrArray0, (float*)pvalues, itemCount, groupCount, (double)(0.67), (double)(0), flags);
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static void PlotBarGroupsNative(byte** labelIds, double* values, int itemCount, int groupCount, double groupSize, double shift, ImPlotBarGroupsFlags flags)
{
#if NET5_0_OR_GREATER
((delegate* unmanaged[Cdecl]<byte**, double*, int, int, double, double, ImPlotBarGroupsFlags, void>)funcTable[166])(labelIds, values, itemCount, groupCount, groupSize, shift, flags);
#else
((delegate* unmanaged[Cdecl]<nint, nint, int, int, double, double, ImPlotBarGroupsFlags, void>)funcTable[166])((nint)labelIds, (nint)values, itemCount, groupCount, groupSize, shift, flags);
#endif
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, double* values, int itemCount, int groupCount, double groupSize, double shift, ImPlotBarGroupsFlags flags)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, groupSize, shift, flags);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, double* values, int itemCount, int groupCount, double groupSize, double shift)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, groupSize, shift, (ImPlotBarGroupsFlags)(0));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, double* values, int itemCount, int groupCount, double groupSize)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, groupSize, (double)(0), (ImPlotBarGroupsFlags)(0));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, double* values, int itemCount, int groupCount)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, (double)(0.67), (double)(0), (ImPlotBarGroupsFlags)(0));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, double* values, int itemCount, int groupCount, double groupSize, ImPlotBarGroupsFlags flags)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, groupSize, (double)(0), flags);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, double* values, int itemCount, int groupCount, ImPlotBarGroupsFlags flags)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, (double)(0.67), (double)(0), flags);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, double* values, int itemCount, int groupCount, double groupSize, double shift, ImPlotBarGroupsFlags flags)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
PlotBarGroupsNative(pStrArray0, values, itemCount, groupCount, groupSize, shift, flags);
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, double* values, int itemCount, int groupCount, double groupSize, double shift)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
PlotBarGroupsNative(pStrArray0, values, itemCount, groupCount, groupSize, shift, (ImPlotBarGroupsFlags)(0));
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, double* values, int itemCount, int groupCount, double groupSize)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
PlotBarGroupsNative(pStrArray0, values, itemCount, groupCount, groupSize, (double)(0), (ImPlotBarGroupsFlags)(0));
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, double* values, int itemCount, int groupCount)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
PlotBarGroupsNative(pStrArray0, values, itemCount, groupCount, (double)(0.67), (double)(0), (ImPlotBarGroupsFlags)(0));
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, double* values, int itemCount, int groupCount, double groupSize, ImPlotBarGroupsFlags flags)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
PlotBarGroupsNative(pStrArray0, values, itemCount, groupCount, groupSize, (double)(0), flags);
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, double* values, int itemCount, int groupCount, ImPlotBarGroupsFlags flags)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
PlotBarGroupsNative(pStrArray0, values, itemCount, groupCount, (double)(0.67), (double)(0), flags);
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, ref double values, int itemCount, int groupCount, double groupSize, double shift, ImPlotBarGroupsFlags flags)
{
fixed (double* pvalues = &values)
{
PlotBarGroupsNative(labelIds, (double*)pvalues, itemCount, groupCount, groupSize, shift, flags);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, ref double values, int itemCount, int groupCount, double groupSize, double shift)
{
fixed (double* pvalues = &values)
{
PlotBarGroupsNative(labelIds, (double*)pvalues, itemCount, groupCount, groupSize, shift, (ImPlotBarGroupsFlags)(0));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, ref double values, int itemCount, int groupCount, double groupSize)
{
fixed (double* pvalues = &values)
{
PlotBarGroupsNative(labelIds, (double*)pvalues, itemCount, groupCount, groupSize, (double)(0), (ImPlotBarGroupsFlags)(0));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, ref double values, int itemCount, int groupCount)
{
fixed (double* pvalues = &values)
{
PlotBarGroupsNative(labelIds, (double*)pvalues, itemCount, groupCount, (double)(0.67), (double)(0), (ImPlotBarGroupsFlags)(0));
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, ref double values, int itemCount, int groupCount, double groupSize, ImPlotBarGroupsFlags flags)
{
fixed (double* pvalues = &values)
{
PlotBarGroupsNative(labelIds, (double*)pvalues, itemCount, groupCount, groupSize, (double)(0), flags);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, ref double values, int itemCount, int groupCount, ImPlotBarGroupsFlags flags)
{
fixed (double* pvalues = &values)
{
PlotBarGroupsNative(labelIds, (double*)pvalues, itemCount, groupCount, (double)(0.67), (double)(0), flags);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, ref double values, int itemCount, int groupCount, double groupSize, double shift, ImPlotBarGroupsFlags flags)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
fixed (double* pvalues = &values)
{
PlotBarGroupsNative(pStrArray0, (double*)pvalues, itemCount, groupCount, groupSize, shift, flags);
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, ref double values, int itemCount, int groupCount, double groupSize, double shift)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
fixed (double* pvalues = &values)
{
PlotBarGroupsNative(pStrArray0, (double*)pvalues, itemCount, groupCount, groupSize, shift, (ImPlotBarGroupsFlags)(0));
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, ref double values, int itemCount, int groupCount, double groupSize)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
fixed (double* pvalues = &values)
{
PlotBarGroupsNative(pStrArray0, (double*)pvalues, itemCount, groupCount, groupSize, (double)(0), (ImPlotBarGroupsFlags)(0));
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, ref double values, int itemCount, int groupCount)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
fixed (double* pvalues = &values)
{
PlotBarGroupsNative(pStrArray0, (double*)pvalues, itemCount, groupCount, (double)(0.67), (double)(0), (ImPlotBarGroupsFlags)(0));
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, ref double values, int itemCount, int groupCount, double groupSize, ImPlotBarGroupsFlags flags)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
fixed (double* pvalues = &values)
{
PlotBarGroupsNative(pStrArray0, (double*)pvalues, itemCount, groupCount, groupSize, (double)(0), flags);
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, ref double values, int itemCount, int groupCount, ImPlotBarGroupsFlags flags)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
fixed (double* pvalues = &values)
{
PlotBarGroupsNative(pStrArray0, (double*)pvalues, itemCount, groupCount, (double)(0.67), (double)(0), flags);
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
}
/// <summary>
/// To be documented.
/// </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal static void PlotBarGroupsNative(byte** labelIds, sbyte* values, int itemCount, int groupCount, double groupSize, double shift, ImPlotBarGroupsFlags flags)
{
#if NET5_0_OR_GREATER
((delegate* unmanaged[Cdecl]<byte**, sbyte*, int, int, double, double, ImPlotBarGroupsFlags, void>)funcTable[167])(labelIds, values, itemCount, groupCount, groupSize, shift, flags);
#else
((delegate* unmanaged[Cdecl]<nint, nint, int, int, double, double, ImPlotBarGroupsFlags, void>)funcTable[167])((nint)labelIds, (nint)values, itemCount, groupCount, groupSize, shift, flags);
#endif
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, sbyte* values, int itemCount, int groupCount, double groupSize, double shift, ImPlotBarGroupsFlags flags)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, groupSize, shift, flags);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, sbyte* values, int itemCount, int groupCount, double groupSize, double shift)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, groupSize, shift, (ImPlotBarGroupsFlags)(0));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, sbyte* values, int itemCount, int groupCount, double groupSize)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, groupSize, (double)(0), (ImPlotBarGroupsFlags)(0));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, sbyte* values, int itemCount, int groupCount)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, (double)(0.67), (double)(0), (ImPlotBarGroupsFlags)(0));
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, sbyte* values, int itemCount, int groupCount, double groupSize, ImPlotBarGroupsFlags flags)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, groupSize, (double)(0), flags);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(byte** labelIds, sbyte* values, int itemCount, int groupCount, ImPlotBarGroupsFlags flags)
{
PlotBarGroupsNative(labelIds, values, itemCount, groupCount, (double)(0.67), (double)(0), flags);
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, sbyte* values, int itemCount, int groupCount, double groupSize, double shift, ImPlotBarGroupsFlags flags)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
PlotBarGroupsNative(pStrArray0, values, itemCount, groupCount, groupSize, shift, flags);
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
/// <summary>
/// To be documented.
/// </summary>
public static void PlotBarGroups(string[] labelIds, sbyte* values, int itemCount, int groupCount, double groupSize, double shift)
{
byte** pStrArray0 = null;
int pStrArray0Size = Utils.GetByteCountArray(labelIds);
if (labelIds != null)
{
if (pStrArray0Size > Utils.MaxStackallocSize)
{
pStrArray0 = (byte**)Utils.Alloc<byte>(pStrArray0Size);
}
else
{
byte* pStrArray0Stack = stackalloc byte[pStrArray0Size];
pStrArray0 = (byte**)pStrArray0Stack;
}
}
for (int i = 0; i < labelIds.Length; i++)
{
pStrArray0[i] = (byte*)Utils.StringToUTF8Ptr(labelIds[i]);
}
PlotBarGroupsNative(pStrArray0, values, itemCount, groupCount, groupSize, shift, (ImPlotBarGroupsFlags)(0));
for (int i = 0; i < labelIds.Length; i++)
{
Utils.Free(pStrArray0[i]);
}
if (pStrArray0Size >= Utils.MaxStackallocSize)
{
Utils.Free(pStrArray0);
}
}
}
}