// ------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // // ------------------------------------------------------------------------------ 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 { /// /// To be documented. /// public static void PlotShaded(string labelId, ushort* xs, ushort* ys1, ref ushort ys2, int count, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, xs, ys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(ushort))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ushort* xs, ushort* ys1, ref ushort ys2, int count, int offset, int stride) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, xs, ys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, (ushort*)pxs, ys1, (ushort*)pys2, count, flags, offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, (ushort*)pxs, ys1, (ushort*)pys2, count, flags, offset, (int)(sizeof(ushort))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, ImPlotShadedFlags flags) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, (ushort*)pxs, ys1, (ushort*)pys2, count, flags, (int)(0), (int)(sizeof(ushort))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, (ushort*)pxs, ys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(ushort))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, int offset) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, (ushort*)pxs, ys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(ushort))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, int offset, int stride) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, (ushort*)pxs, ys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, ys1, (ushort*)pys2, count, flags, offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = &labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, ys1, (ushort*)pys2, count, flags, offset, (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = &labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, ys1, (ushort*)pys2, count, flags, (int)(0), (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count) { fixed (byte* plabelId = &labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, ys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, int offset) { fixed (byte* plabelId = &labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, ys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, ys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, ys1, (ushort*)pys2, count, flags, offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, ys1, (ushort*)pys2, count, flags, offset, (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, ys1, (ushort*)pys2, count, flags, (int)(0), (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count) { fixed (byte* plabelId = labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, ys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, int offset) { fixed (byte* plabelId = labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, ys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, ys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, ImPlotShadedFlags 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(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, (ushort*)pxs, ys1, (ushort*)pys2, count, flags, offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, (ushort*)pxs, ys1, (ushort*)pys2, count, flags, offset, (int)(sizeof(ushort))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, ImPlotShadedFlags flags) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, (ushort*)pxs, ys1, (ushort*)pys2, count, flags, (int)(0), (int)(sizeof(ushort))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, (ushort*)pxs, ys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(ushort))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, (ushort*)pxs, ys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(ushort))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref ushort xs, ushort* ys1, ref ushort ys2, int count, int offset, int stride) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pxs = &xs) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, (ushort*)pxs, ys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, xs, (ushort*)pys1, (ushort*)pys2, count, flags, offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, xs, (ushort*)pys1, (ushort*)pys2, count, flags, offset, (int)(sizeof(ushort))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, xs, (ushort*)pys1, (ushort*)pys2, count, flags, (int)(0), (int)(sizeof(ushort))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, xs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(ushort))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, int offset) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, xs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(ushort))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, int offset, int stride) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, xs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (ushort*)pys1, (ushort*)pys2, count, flags, offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = &labelId) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (ushort*)pys1, (ushort*)pys2, count, flags, offset, (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = &labelId) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (ushort*)pys1, (ushort*)pys2, count, flags, (int)(0), (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count) { fixed (byte* plabelId = &labelId) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, int offset) { fixed (byte* plabelId = &labelId) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (ushort*)pys1, (ushort*)pys2, count, flags, offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = labelId) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (ushort*)pys1, (ushort*)pys2, count, flags, offset, (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = labelId) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (ushort*)pys1, (ushort*)pys2, count, flags, (int)(0), (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count) { fixed (byte* plabelId = labelId) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, int offset) { fixed (byte* plabelId = labelId) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags 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(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, xs, (ushort*)pys1, (ushort*)pys2, count, flags, offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, xs, (ushort*)pys1, (ushort*)pys2, count, flags, offset, (int)(sizeof(ushort))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, xs, (ushort*)pys1, (ushort*)pys2, count, flags, (int)(0), (int)(sizeof(ushort))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, xs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(ushort))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, xs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(ushort))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ushort* xs, ref ushort ys1, ref ushort ys2, int count, int offset, int stride) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, xs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, flags, offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, flags, offset, (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, flags, (int)(0), (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, int offset) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(ushort))); } } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, int offset, int stride) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(labelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, flags, offset, stride); } } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = &labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, flags, offset, (int)(sizeof(ushort))); } } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = &labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, flags, (int)(0), (int)(sizeof(ushort))); } } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count) { fixed (byte* plabelId = &labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(ushort))); } } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, int offset) { fixed (byte* plabelId = &labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(ushort))); } } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, flags, offset, stride); } } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, flags, offset, (int)(sizeof(ushort))); } } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, flags, (int)(0), (int)(sizeof(ushort))); } } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count) { fixed (byte* plabelId = labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(ushort))); } } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, int offset) { fixed (byte* plabelId = labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(ushort))); } } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags 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(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, flags, offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, flags, offset, (int)(sizeof(ushort))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, ImPlotShadedFlags flags) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, flags, (int)(0), (int)(sizeof(ushort))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(ushort))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(ushort))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref ushort xs, ref ushort ys1, ref ushort ys2, int count, int offset, int stride) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (ushort* pxs = &xs) { fixed (ushort* pys1 = &ys1) { fixed (ushort* pys2 = &ys2) { PlotShadedNative(pStr0, (ushort*)pxs, (ushort*)pys1, (ushort*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } } /// /// To be documented. /// [MethodImpl(MethodImplOptions.AggressiveInlining)] internal static void PlotShadedNative(byte* labelId, int* xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { #if NET5_0_OR_GREATER ((delegate* unmanaged[Cdecl])funcTable[132])(labelId, xs, ys1, ys2, count, flags, offset, stride); #else ((delegate* unmanaged[Cdecl])funcTable[132])((nint)labelId, (nint)xs, (nint)ys1, (nint)ys2, count, flags, offset, stride); #endif } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { PlotShadedNative(labelId, xs, ys1, ys2, count, flags, offset, stride); } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset) { PlotShadedNative(labelId, xs, ys1, ys2, count, flags, offset, (int)(sizeof(int))); } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags) { PlotShadedNative(labelId, xs, ys1, ys2, count, flags, (int)(0), (int)(sizeof(int))); } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, int* ys1, int* ys2, int count) { PlotShadedNative(labelId, xs, ys1, ys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, int* ys1, int* ys2, int count, int offset) { PlotShadedNative(labelId, xs, ys1, ys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, int* ys1, int* ys2, int count, int offset, int stride) { PlotShadedNative(labelId, xs, ys1, ys2, count, (ImPlotShadedFlags)(0), offset, stride); } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = &labelId) { PlotShadedNative((byte*)plabelId, xs, ys1, ys2, count, flags, offset, stride); } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = &labelId) { PlotShadedNative((byte*)plabelId, xs, ys1, ys2, count, flags, offset, (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = &labelId) { PlotShadedNative((byte*)plabelId, xs, ys1, ys2, count, flags, (int)(0), (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, int* ys1, int* ys2, int count) { fixed (byte* plabelId = &labelId) { PlotShadedNative((byte*)plabelId, xs, ys1, ys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, int* ys1, int* ys2, int count, int offset) { fixed (byte* plabelId = &labelId) { PlotShadedNative((byte*)plabelId, xs, ys1, ys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, int* ys1, int* ys2, int count, int offset, int stride) { fixed (byte* plabelId = &labelId) { PlotShadedNative((byte*)plabelId, xs, ys1, ys2, count, (ImPlotShadedFlags)(0), offset, stride); } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = labelId) { PlotShadedNative((byte*)plabelId, xs, ys1, ys2, count, flags, offset, stride); } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = labelId) { PlotShadedNative((byte*)plabelId, xs, ys1, ys2, count, flags, offset, (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = labelId) { PlotShadedNative((byte*)plabelId, xs, ys1, ys2, count, flags, (int)(0), (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, int* ys1, int* ys2, int count) { fixed (byte* plabelId = labelId) { PlotShadedNative((byte*)plabelId, xs, ys1, ys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, int* ys1, int* ys2, int count, int offset) { fixed (byte* plabelId = labelId) { PlotShadedNative((byte*)plabelId, xs, ys1, ys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, int* ys1, int* ys2, int count, int offset, int stride) { fixed (byte* plabelId = labelId) { PlotShadedNative((byte*)plabelId, xs, ys1, ys2, count, (ImPlotShadedFlags)(0), offset, stride); } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, int* ys1, int* ys2, int count, ImPlotShadedFlags 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(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } PlotShadedNative(pStr0, xs, ys1, ys2, count, flags, offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } PlotShadedNative(pStr0, xs, ys1, ys2, count, flags, offset, (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } PlotShadedNative(pStr0, xs, ys1, ys2, count, flags, (int)(0), (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, int* ys1, int* ys2, int count) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } PlotShadedNative(pStr0, xs, ys1, ys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, int* ys1, int* ys2, int count, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } PlotShadedNative(pStr0, xs, ys1, ys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, int* ys1, int* ys2, int count, int offset, int stride) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } PlotShadedNative(pStr0, xs, ys1, ys2, count, (ImPlotShadedFlags)(0), offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (int* pxs = &xs) { PlotShadedNative(labelId, (int*)pxs, ys1, ys2, count, flags, offset, stride); } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (int* pxs = &xs) { PlotShadedNative(labelId, (int*)pxs, ys1, ys2, count, flags, offset, (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags) { fixed (int* pxs = &xs) { PlotShadedNative(labelId, (int*)pxs, ys1, ys2, count, flags, (int)(0), (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, int* ys1, int* ys2, int count) { fixed (int* pxs = &xs) { PlotShadedNative(labelId, (int*)pxs, ys1, ys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, int* ys1, int* ys2, int count, int offset) { fixed (int* pxs = &xs) { PlotShadedNative(labelId, (int*)pxs, ys1, ys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, int* ys1, int* ys2, int count, int offset, int stride) { fixed (int* pxs = &xs) { PlotShadedNative(labelId, (int*)pxs, ys1, ys2, count, (ImPlotShadedFlags)(0), offset, stride); } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, ys2, count, flags, offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, ys2, count, flags, offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, ys2, count, flags, (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, int* ys1, int* ys2, int count) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, ys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, int* ys1, int* ys2, int count, int offset) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, ys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, int* ys1, int* ys2, int count, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, ys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, ys2, count, flags, offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, ys2, count, flags, offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, ys2, count, flags, (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, int* ys1, int* ys2, int count) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, ys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, int* ys1, int* ys2, int count, int offset) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, ys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, int* ys1, int* ys2, int count, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, ys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, int* ys1, int* ys2, int count, ImPlotShadedFlags 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(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { PlotShadedNative(pStr0, (int*)pxs, ys1, ys2, count, flags, offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { PlotShadedNative(pStr0, (int*)pxs, ys1, ys2, count, flags, offset, (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, int* ys1, int* ys2, int count, ImPlotShadedFlags flags) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { PlotShadedNative(pStr0, (int*)pxs, ys1, ys2, count, flags, (int)(0), (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, int* ys1, int* ys2, int count) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { PlotShadedNative(pStr0, (int*)pxs, ys1, ys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, int* ys1, int* ys2, int count, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { PlotShadedNative(pStr0, (int*)pxs, ys1, ys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, int* ys1, int* ys2, int count, int offset, int stride) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { PlotShadedNative(pStr0, (int*)pxs, ys1, ys2, count, (ImPlotShadedFlags)(0), offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (int* pys1 = &ys1) { PlotShadedNative(labelId, xs, (int*)pys1, ys2, count, flags, offset, stride); } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (int* pys1 = &ys1) { PlotShadedNative(labelId, xs, (int*)pys1, ys2, count, flags, offset, (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags) { fixed (int* pys1 = &ys1) { PlotShadedNative(labelId, xs, (int*)pys1, ys2, count, flags, (int)(0), (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, ref int ys1, int* ys2, int count) { fixed (int* pys1 = &ys1) { PlotShadedNative(labelId, xs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, ref int ys1, int* ys2, int count, int offset) { fixed (int* pys1 = &ys1) { PlotShadedNative(labelId, xs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, ref int ys1, int* ys2, int count, int offset, int stride) { fixed (int* pys1 = &ys1) { PlotShadedNative(labelId, xs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), offset, stride); } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, ys2, count, flags, offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = &labelId) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, ys2, count, flags, offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = &labelId) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, ys2, count, flags, (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, ref int ys1, int* ys2, int count) { fixed (byte* plabelId = &labelId) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, ref int ys1, int* ys2, int count, int offset) { fixed (byte* plabelId = &labelId) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, ref int ys1, int* ys2, int count, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, ys2, count, flags, offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = labelId) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, ys2, count, flags, offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = labelId) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, ys2, count, flags, (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, ref int ys1, int* ys2, int count) { fixed (byte* plabelId = labelId) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, ref int ys1, int* ys2, int count, int offset) { fixed (byte* plabelId = labelId) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, ref int ys1, int* ys2, int count, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags 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(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys1 = &ys1) { PlotShadedNative(pStr0, xs, (int*)pys1, ys2, count, flags, offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys1 = &ys1) { PlotShadedNative(pStr0, xs, (int*)pys1, ys2, count, flags, offset, (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys1 = &ys1) { PlotShadedNative(pStr0, xs, (int*)pys1, ys2, count, flags, (int)(0), (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, ref int ys1, int* ys2, int count) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys1 = &ys1) { PlotShadedNative(pStr0, xs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, ref int ys1, int* ys2, int count, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys1 = &ys1) { PlotShadedNative(pStr0, xs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, ref int ys1, int* ys2, int count, int offset, int stride) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys1 = &ys1) { PlotShadedNative(pStr0, xs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative(labelId, (int*)pxs, (int*)pys1, ys2, count, flags, offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative(labelId, (int*)pxs, (int*)pys1, ys2, count, flags, offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative(labelId, (int*)pxs, (int*)pys1, ys2, count, flags, (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, ref int ys1, int* ys2, int count) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative(labelId, (int*)pxs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, ref int ys1, int* ys2, int count, int offset) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative(labelId, (int*)pxs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, ref int ys1, int* ys2, int count, int offset, int stride) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative(labelId, (int*)pxs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, ys2, count, flags, offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, ys2, count, flags, offset, (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, ys2, count, flags, (int)(0), (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, ref int ys1, int* ys2, int count) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, ref int ys1, int* ys2, int count, int offset) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, ref int ys1, int* ys2, int count, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, ys2, count, flags, offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, ys2, count, flags, offset, (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, ys2, count, flags, (int)(0), (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, ref int ys1, int* ys2, int count) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, ref int ys1, int* ys2, int count, int offset) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, ref int ys1, int* ys2, int count, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags 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(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative(pStr0, (int*)pxs, (int*)pys1, ys2, count, flags, offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative(pStr0, (int*)pxs, (int*)pys1, ys2, count, flags, offset, (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, ref int ys1, int* ys2, int count, ImPlotShadedFlags flags) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative(pStr0, (int*)pxs, (int*)pys1, ys2, count, flags, (int)(0), (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, ref int ys1, int* ys2, int count) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative(pStr0, (int*)pxs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, ref int ys1, int* ys2, int count, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative(pStr0, (int*)pxs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, ref int ys1, int* ys2, int count, int offset, int stride) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { PlotShadedNative(pStr0, (int*)pxs, (int*)pys1, ys2, count, (ImPlotShadedFlags)(0), offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, xs, ys1, (int*)pys2, count, flags, offset, stride); } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, xs, ys1, (int*)pys2, count, flags, offset, (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, xs, ys1, (int*)pys2, count, flags, (int)(0), (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, int* ys1, ref int ys2, int count) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, xs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, int* ys1, ref int ys2, int count, int offset) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, xs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, int* ys1, ref int ys2, int count, int offset, int stride) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, xs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, ys1, (int*)pys2, count, flags, offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = &labelId) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, ys1, (int*)pys2, count, flags, offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = &labelId) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, ys1, (int*)pys2, count, flags, (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, int* ys1, ref int ys2, int count) { fixed (byte* plabelId = &labelId) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, int* ys1, ref int ys2, int count, int offset) { fixed (byte* plabelId = &labelId) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, int* ys1, ref int ys2, int count, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, ys1, (int*)pys2, count, flags, offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = labelId) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, ys1, (int*)pys2, count, flags, offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = labelId) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, ys1, (int*)pys2, count, flags, (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, int* ys1, ref int ys2, int count) { fixed (byte* plabelId = labelId) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, int* ys1, ref int ys2, int count, int offset) { fixed (byte* plabelId = labelId) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, int* ys1, ref int ys2, int count, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags 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(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, xs, ys1, (int*)pys2, count, flags, offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, xs, ys1, (int*)pys2, count, flags, offset, (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, xs, ys1, (int*)pys2, count, flags, (int)(0), (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, int* ys1, ref int ys2, int count) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, xs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, int* ys1, ref int ys2, int count, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, xs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, int* ys1, ref int ys2, int count, int offset, int stride) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, xs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, (int*)pxs, ys1, (int*)pys2, count, flags, offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, (int*)pxs, ys1, (int*)pys2, count, flags, offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, (int*)pxs, ys1, (int*)pys2, count, flags, (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, int* ys1, ref int ys2, int count) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, (int*)pxs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, int* ys1, ref int ys2, int count, int offset) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, (int*)pxs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, int* ys1, ref int ys2, int count, int offset, int stride) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, (int*)pxs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, (int*)pys2, count, flags, offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, (int*)pys2, count, flags, offset, (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, (int*)pys2, count, flags, (int)(0), (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, int* ys1, ref int ys2, int count) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, int* ys1, ref int ys2, int count, int offset) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, int* ys1, ref int ys2, int count, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, (int*)pys2, count, flags, offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, (int*)pys2, count, flags, offset, (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, (int*)pys2, count, flags, (int)(0), (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, int* ys1, ref int ys2, int count) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, int* ys1, ref int ys2, int count, int offset) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, int* ys1, ref int ys2, int count, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags 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(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, (int*)pxs, ys1, (int*)pys2, count, flags, offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, (int*)pxs, ys1, (int*)pys2, count, flags, offset, (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, int* ys1, ref int ys2, int count, ImPlotShadedFlags flags) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, (int*)pxs, ys1, (int*)pys2, count, flags, (int)(0), (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, int* ys1, ref int ys2, int count) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, (int*)pxs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, int* ys1, ref int ys2, int count, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, (int*)pxs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, ref int xs, int* ys1, ref int ys2, int count, int offset, int stride) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pxs = &xs) { fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, (int*)pxs, ys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, xs, (int*)pys1, (int*)pys2, count, flags, offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, xs, (int*)pys1, (int*)pys2, count, flags, offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, xs, (int*)pys1, (int*)pys2, count, flags, (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, ref int ys1, ref int ys2, int count) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, xs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, ref int ys1, ref int ys2, int count, int offset) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, xs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, int* xs, ref int ys1, ref int ys2, int count, int offset, int stride) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, xs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, (int*)pys2, count, flags, offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = &labelId) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, (int*)pys2, count, flags, offset, (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = &labelId) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, (int*)pys2, count, flags, (int)(0), (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, ref int ys1, ref int ys2, int count) { fixed (byte* plabelId = &labelId) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, ref int ys1, ref int ys2, int count, int offset) { fixed (byte* plabelId = &labelId) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, int* xs, ref int ys1, ref int ys2, int count, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, (int*)pys2, count, flags, offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = labelId) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, (int*)pys2, count, flags, offset, (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = labelId) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, (int*)pys2, count, flags, (int)(0), (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, ref int ys1, ref int ys2, int count) { fixed (byte* plabelId = labelId) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, ref int ys1, ref int ys2, int count, int offset) { fixed (byte* plabelId = labelId) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, int* xs, ref int ys1, ref int ys2, int count, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, xs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags 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(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, xs, (int*)pys1, (int*)pys2, count, flags, offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, xs, (int*)pys1, (int*)pys2, count, flags, offset, (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, xs, (int*)pys1, (int*)pys2, count, flags, (int)(0), (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, ref int ys1, ref int ys2, int count) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, xs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, ref int ys1, ref int ys2, int count, int offset) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, xs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(string labelId, int* xs, ref int ys1, ref int ys2, int count, int offset, int stride) { byte* pStr0 = null; int pStrSize0 = 0; if (labelId != null) { pStrSize0 = Utils.GetByteCountUTF8(labelId); if (pStrSize0 >= Utils.MaxStackallocSize) { pStr0 = Utils.Alloc(pStrSize0 + 1); } else { byte* pStrStack0 = stackalloc byte[pStrSize0 + 1]; pStr0 = pStrStack0; } int pStrOffset0 = Utils.EncodeStringUTF8(labelId, pStr0, pStrSize0); pStr0[pStrOffset0] = 0; } fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(pStr0, xs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); if (pStrSize0 >= Utils.MaxStackallocSize) { Utils.Free(pStr0); } } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, (int*)pxs, (int*)pys1, (int*)pys2, count, flags, offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, (int*)pxs, (int*)pys1, (int*)pys2, count, flags, offset, (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, (int*)pxs, (int*)pys1, (int*)pys2, count, flags, (int)(0), (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, ref int ys1, ref int ys2, int count) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, (int*)pxs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, ref int ys1, ref int ys2, int count, int offset) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, (int*)pxs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } } } /// /// To be documented. /// public static void PlotShaded(byte* labelId, ref int xs, ref int ys1, ref int ys2, int count, int offset, int stride) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative(labelId, (int*)pxs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, (int*)pys2, count, flags, offset, stride); } } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, (int*)pys2, count, flags, offset, (int)(sizeof(int))); } } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, (int*)pys2, count, flags, (int)(0), (int)(sizeof(int))); } } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, ref int ys1, ref int ys2, int count) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), (int)(0), (int)(sizeof(int))); } } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, ref int ys1, ref int ys2, int count, int offset) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, (int)(sizeof(int))); } } } } } /// /// To be documented. /// public static void PlotShaded(ref byte labelId, ref int xs, ref int ys1, ref int ys2, int count, int offset, int stride) { fixed (byte* plabelId = &labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, (int*)pys2, count, (ImPlotShadedFlags)(0), offset, stride); } } } } } /// /// To be documented. /// public static void PlotShaded(ReadOnlySpan labelId, ref int xs, ref int ys1, ref int ys2, int count, ImPlotShadedFlags flags, int offset, int stride) { fixed (byte* plabelId = labelId) { fixed (int* pxs = &xs) { fixed (int* pys1 = &ys1) { fixed (int* pys2 = &ys2) { PlotShadedNative((byte*)plabelId, (int*)pxs, (int*)pys1, (int*)pys2, count, flags, offset, stride); } } } } } } }