Merge branch 'master' into map_links

This commit is contained in:
meli 2020-04-02 21:20:02 -07:00
commit adb429557f
50 changed files with 2009 additions and 496 deletions

View file

@ -1,5 +1,5 @@
name: Build Dalamud
on: [push]
on: [push, pull_request]
jobs:
build:

View file

@ -14,10 +14,10 @@
</PropertyGroup>
<PropertyGroup Label="Feature">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyVersion>4.7.21.0</AssemblyVersion>
<FileVersion>4.7.21.0</FileVersion>
<AssemblyVersion>4.8.1.0</AssemblyVersion>
<FileVersion>4.8.1.0</FileVersion>
<Description>XIVLauncher addon injection</Description>
<Version>4.7.21.0</Version>
<Version>4.8.1.0</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile></DocumentationFile>

View file

@ -14,9 +14,9 @@
</PropertyGroup>
<PropertyGroup Label="Feature">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyVersion>4.7.21.0</AssemblyVersion>
<Version>4.7.21.0</Version>
<FileVersion>4.7.21.0</FileVersion>
<AssemblyVersion>4.8.1.0</AssemblyVersion>
<Version>4.8.1</Version>
<FileVersion>4.8.1.0</FileVersion>
</PropertyGroup>
<ItemGroup Label="Resources">
<None Include="$(SolutionDir)/Resources/**/*" CopyToOutputDirectory="PreserveNewest" Visible="false" />

View file

@ -0,0 +1,481 @@
using System;
using Lumina.Data.Structs.Excel;
using Lumina.Excel;
namespace Dalamud.Data.TransientSheet
{
[Sheet("Item", columnHash: 0x9f2e970b)]
public class Item : IExcelRow
{
// column defs from Mon, 24 Feb 2020 17:34:06 GMT
// col: 00 offset: 0000
public string Singular;
// col: 02 offset: 0004
public string Plural;
// col: 08 offset: 0008
public string Description;
// col: 09 offset: 000c
public string Name;
// col: 01 offset: 0010
public sbyte Adjective;
// col: 03 offset: 0011
public sbyte PossessivePronoun;
// col: 04 offset: 0012
public sbyte StartsWithVowel;
// col: 05 offset: 0013
public sbyte unknown13;
// col: 06 offset: 0014
public sbyte Pronoun;
// col: 07 offset: 0015
public sbyte Article;
// col: 47 offset: 0018
public ulong ModelMain;
// col: 48 offset: 0020
public ulong ModelSub;
// col: 51 offset: 0028
public ushort DamagePhys;
// col: 52 offset: 002a
public ushort DamageMag;
// col: 53 offset: 002c
public ushort Delayms;
// col: 55 offset: 002e
public ushort BlockRate;
// col: 56 offset: 0030
public ushort Block;
// col: 57 offset: 0032
public ushort DefensePhys;
// col: 58 offset: 0034
public ushort DefenseMag;
// col: 66 offset: 003c
public short unknown3c;
// col: 68 offset: 003e
public short unknown3e;
// col: 70 offset: 0040
public short unknown40;
// col: 80 offset: 0048
public short unknown48;
// col: 82 offset: 004a
public short unknown4a;
// col: 84 offset: 004c
public short unknown4c;
// col: 40 offset: 004e
public byte LevelEquip;
// col: 41 offset: 004f
public byte unknown4f;
// col: 42 offset: 0050
public byte EquipRestriction;
// col: 43 offset: 0051
public byte ClassJobCategory;
// col: 44 offset: 0052
public byte GrandCompany;
// col: 45 offset: 0053
public byte ItemSeries;
// col: 46 offset: 0054
public byte BaseParamModifier;
// col: 49 offset: 0055
public byte ClassJobUse;
// col: 50 offset: 0056
public byte unknown56;
// col: 54 offset: 0057
public byte unknown57;
// col: 59 offset: 0058
public short[] unknown58;
// col: 65 offset: 005b
public byte unknown5b;
// col: 67 offset: 005c
public byte unknown5c;
// col: 69 offset: 005d
public byte unknown5d;
// col: 71 offset: 005e
public byte ItemSpecialBonus;
// col: 72 offset: 005f
public byte ItemSpecialBonusParam;
// col: 73 offset: 0060
public short[] unknown60;
// col: 79 offset: 0063
public byte unknown63;
// col: 81 offset: 0064
public byte unknown64;
// col: 83 offset: 0065
public byte unknown65;
// col: 85 offset: 0066
public byte MaterializeType;
// col: 86 offset: 0067
public byte MateriaSlotCount;
// col: 89 offset: 0068
public byte unknown68;
// col: 87 offset: 0069
private byte packed69;
public bool IsAdvancedMeldingPermitted => (packed69 & 0x1) == 0x1;
public bool IsPvP => (packed69 & 0x2) == 0x2;
public bool IsGlamourous => (packed69 & 0x4) == 0x4;
// col: 14 offset: 0070
public uint AdditionalData;
// col: 19 offset: 0074
public uint StackSize;
// col: 24 offset: 0078
public uint PriceMid;
// col: 25 offset: 007c
public uint PriceLow;
// col: 33 offset: 0080
public int ItemRepair;
// col: 34 offset: 0084
public int ItemGlamour;
// col: 10 offset: 0088
public ushort Icon;
// col: 11 offset: 008a
public ushort LevelItem;
// col: 18 offset: 008c
public ushort unknown8c;
// col: 29 offset: 008e
public ushort ItemAction;
// col: 31 offset: 0090
public ushort Cooldowns;
// col: 35 offset: 0092
public ushort Salvage;
// col: 36 offset: 0094
public ushort unknown94;
// col: 39 offset: 0096
public ushort AetherialReduce;
// col: 12 offset: 0098
public byte Rarity;
// col: 13 offset: 0099
public byte FilterGroup;
// col: 15 offset: 009a
public byte ItemUICategory;
// col: 16 offset: 009b
public byte ItemSearchCategory;
// col: 17 offset: 009c
public byte EquipSlotCategory;
// col: 30 offset: 009d
public byte unknown9d;
// col: 32 offset: 009e
public byte ClassJobRepair;
// col: 20 offset: 009f
private byte packed9f;
public bool IsUnique => (packed9f & 0x1) == 0x1;
public bool IsUntradable => (packed9f & 0x2) == 0x2;
public bool IsIndisposable => (packed9f & 0x4) == 0x4;
public bool Lot => (packed9f & 0x8) == 0x8;
public bool CanBeHq => (packed9f & 0x10) == 0x10;
public bool IsDyeable => (packed9f & 0x20) == 0x20;
public bool IsCrestWorthy => (packed9f & 0x40) == 0x40;
public bool IsCollectable => (packed9f & 0x80) == 0x80;
// col: 38 offset: 00a0
private byte packeda0;
public bool AlwaysCollectable => (packeda0 & 0x1) == 0x1;
public int RowId { get; set; }
public int SubRowId { get; set; }
public void PopulateData(RowParser parser, global::Lumina.Lumina lumina)
{
RowId = parser.Row;
SubRowId = parser.SubRow;
// col: 0 offset: 0000
Singular = parser.ReadOffset<string>(0x0);
// col: 2 offset: 0004
Plural = parser.ReadOffset<string>(0x4);
// col: 8 offset: 0008
Description = parser.ReadOffset<string>(0x8);
// col: 9 offset: 000c
Name = parser.ReadOffset<string>(0xc);
// col: 1 offset: 0010
Adjective = parser.ReadOffset<sbyte>(0x10);
// col: 3 offset: 0011
PossessivePronoun = parser.ReadOffset<sbyte>(0x11);
// col: 4 offset: 0012
StartsWithVowel = parser.ReadOffset<sbyte>(0x12);
// col: 5 offset: 0013
unknown13 = parser.ReadOffset<sbyte>(0x13);
// col: 6 offset: 0014
Pronoun = parser.ReadOffset<sbyte>(0x14);
// col: 7 offset: 0015
Article = parser.ReadOffset<sbyte>(0x15);
// col: 47 offset: 0018
ModelMain = parser.ReadOffset<ulong>(0x18);
// col: 48 offset: 0020
ModelSub = parser.ReadOffset<ulong>(0x20);
// col: 51 offset: 0028
DamagePhys = parser.ReadOffset<ushort>(0x28);
// col: 52 offset: 002a
DamageMag = parser.ReadOffset<ushort>(0x2a);
// col: 53 offset: 002c
Delayms = parser.ReadOffset<ushort>(0x2c);
// col: 55 offset: 002e
BlockRate = parser.ReadOffset<ushort>(0x2e);
// col: 56 offset: 0030
Block = parser.ReadOffset<ushort>(0x30);
// col: 57 offset: 0032
DefensePhys = parser.ReadOffset<ushort>(0x32);
// col: 58 offset: 0034
DefenseMag = parser.ReadOffset<ushort>(0x34);
// col: 66 offset: 003c
unknown3c = parser.ReadOffset<short>(0x3c);
// col: 68 offset: 003e
unknown3e = parser.ReadOffset<short>(0x3e);
// col: 70 offset: 0040
unknown40 = parser.ReadOffset<short>(0x40);
// col: 80 offset: 0048
unknown48 = parser.ReadOffset<short>(0x48);
// col: 82 offset: 004a
unknown4a = parser.ReadOffset<short>(0x4a);
// col: 84 offset: 004c
unknown4c = parser.ReadOffset<short>(0x4c);
// col: 40 offset: 004e
LevelEquip = parser.ReadOffset<byte>(0x4e);
// col: 41 offset: 004f
unknown4f = parser.ReadOffset<byte>(0x4f);
// col: 42 offset: 0050
EquipRestriction = parser.ReadOffset<byte>(0x50);
// col: 43 offset: 0051
ClassJobCategory = parser.ReadOffset<byte>(0x51);
// col: 44 offset: 0052
GrandCompany = parser.ReadOffset<byte>(0x52);
// col: 45 offset: 0053
ItemSeries = parser.ReadOffset<byte>(0x53);
// col: 46 offset: 0054
BaseParamModifier = parser.ReadOffset<byte>(0x54);
// col: 49 offset: 0055
ClassJobUse = parser.ReadOffset<byte>(0x55);
// col: 50 offset: 0056
unknown56 = parser.ReadOffset<byte>(0x56);
// col: 54 offset: 0057
unknown57 = parser.ReadOffset<byte>(0x57);
// col: 59 offset: 0058
unknown58 = new short[6];
unknown58[0] = parser.ReadOffset<byte>(0x58);
unknown58[1] = parser.ReadOffset<short>(0x36);
unknown58[2] = parser.ReadOffset<byte>(0x59);
unknown58[3] = parser.ReadOffset<short>(0x38);
unknown58[4] = parser.ReadOffset<byte>(0x5a);
unknown58[5] = parser.ReadOffset<short>(0x3a);
// col: 65 offset: 005b
unknown5b = parser.ReadOffset<byte>(0x5b);
// col: 67 offset: 005c
unknown5c = parser.ReadOffset<byte>(0x5c);
// col: 69 offset: 005d
unknown5d = parser.ReadOffset<byte>(0x5d);
// col: 71 offset: 005e
ItemSpecialBonus = parser.ReadOffset<byte>(0x5e);
// col: 72 offset: 005f
ItemSpecialBonusParam = parser.ReadOffset<byte>(0x5f);
// col: 73 offset: 0060
unknown60 = new short[6];
unknown60[0] = parser.ReadOffset<byte>(0x60);
unknown60[1] = parser.ReadOffset<short>(0x42);
unknown60[2] = parser.ReadOffset<byte>(0x61);
unknown60[3] = parser.ReadOffset<short>(0x44);
unknown60[4] = parser.ReadOffset<byte>(0x62);
unknown60[5] = parser.ReadOffset<short>(0x46);
// col: 79 offset: 0063
unknown63 = parser.ReadOffset<byte>(0x63);
// col: 81 offset: 0064
unknown64 = parser.ReadOffset<byte>(0x64);
// col: 83 offset: 0065
unknown65 = parser.ReadOffset<byte>(0x65);
// col: 85 offset: 0066
MaterializeType = parser.ReadOffset<byte>(0x66);
// col: 86 offset: 0067
MateriaSlotCount = parser.ReadOffset<byte>(0x67);
// col: 89 offset: 0068
unknown68 = parser.ReadOffset<byte>(0x68);
// col: 87 offset: 0069
packed69 = parser.ReadOffset<byte>(0x69, ExcelColumnDataType.UInt8);
// col: 14 offset: 0070
AdditionalData = parser.ReadOffset<uint>(0x70);
// col: 19 offset: 0074
StackSize = parser.ReadOffset<uint>(0x74);
// col: 24 offset: 0078
PriceMid = parser.ReadOffset<uint>(0x78);
// col: 25 offset: 007c
PriceLow = parser.ReadOffset<uint>(0x7c);
// col: 33 offset: 0080
ItemRepair = parser.ReadOffset<int>(0x80);
// col: 34 offset: 0084
ItemGlamour = parser.ReadOffset<int>(0x84);
// col: 10 offset: 0088
Icon = parser.ReadOffset<ushort>(0x88);
// col: 11 offset: 008a
LevelItem = parser.ReadOffset<ushort>(0x8a);
// col: 18 offset: 008c
unknown8c = parser.ReadOffset<ushort>(0x8c);
// col: 29 offset: 008e
ItemAction = parser.ReadOffset<ushort>(0x8e);
// col: 31 offset: 0090
Cooldowns = parser.ReadOffset<ushort>(0x90);
// col: 35 offset: 0092
Salvage = parser.ReadOffset<ushort>(0x92);
// col: 36 offset: 0094
unknown94 = parser.ReadOffset<ushort>(0x94);
// col: 39 offset: 0096
AetherialReduce = parser.ReadOffset<ushort>(0x96);
// col: 12 offset: 0098
Rarity = parser.ReadOffset<byte>(0x98);
// col: 13 offset: 0099
FilterGroup = parser.ReadOffset<byte>(0x99);
// col: 15 offset: 009a
ItemUICategory = parser.ReadOffset<byte>(0x9a);
// col: 16 offset: 009b
ItemSearchCategory = parser.ReadOffset<byte>(0x9b);
// col: 17 offset: 009c
EquipSlotCategory = parser.ReadOffset<byte>(0x9c);
// col: 30 offset: 009d
unknown9d = parser.ReadOffset<byte>(0x9d);
// col: 32 offset: 009e
ClassJobRepair = parser.ReadOffset<byte>(0x9e);
// col: 20 offset: 009f
packed9f = parser.ReadOffset<byte>(0x9f, ExcelColumnDataType.UInt8);
// col: 38 offset: 00a0
packeda0 = parser.ReadOffset<byte>(0xa0, ExcelColumnDataType.UInt8);
}
}
}

View file

@ -1,7 +1,7 @@
using System;
using System.Collections;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using Dalamud.Game.ClientState.Actors.Types;
using Dalamud.Game.ClientState.Actors.Types.NonPlayer;
using Dalamud.Hooking;
@ -12,6 +12,17 @@ namespace Dalamud.Game.ClientState.Actors {
/// This collection represents the currently spawned FFXIV actors.
/// </summary>
public class ActorTable : ICollection, IDisposable {
#region temporary imports for crash workaround
[DllImport("kernel32.dll", SetLastError = true)]
static extern bool ReadProcessMemory(
IntPtr hProcess,
IntPtr lpBaseAddress,
IntPtr lpBuffer,
int dwSize,
out IntPtr lpNumberOfBytesRead);
#endregion
private ClientStateAddressResolver Address { get; }
private Dalamud dalamud;
@ -43,6 +54,8 @@ namespace Dalamud.Game.ClientState.Actors {
public void Dispose() {
if (!this.isReady)
this.someActorTableAccessHook.Dispose();
this.isReady = false;
}
private IntPtr SomeActorTableAccessDetour(IntPtr manager, IntPtr offset) {
@ -61,39 +74,45 @@ namespace Dalamud.Game.ClientState.Actors {
if (!this.isReady)
return null;
if (this.someActorTableAccessHook != null) {
if (this.someActorTableAccessHook != null)
{
this.someActorTableAccessHook.Dispose();
this.someActorTableAccessHook = null;
}
if (index > Length)
if (index >= Length)
return null;
//Log.Information("Trying to get actor at {0}", index);
var tblIndex = this.realActorTablePtr + 8 + index * 8;
var offset = Marshal.ReadIntPtr(tblIndex);
//Log.Information("Actor at {0}", offset.ToString());
//Log.Verbose("Actor at {0} for {1}", offset.ToInt64().ToString("X"), index);
if (offset == IntPtr.Zero)
return null;
try {
var actorStruct = Marshal.PtrToStructure<Structs.Actor>(offset);
//Log.Debug("ActorTable[{0}]: {1} - {2} - {3}", index, tblIndex.ToString("X"), offset.ToString("X"),
// actorStruct.ObjectKind.ToString());
switch (actorStruct.ObjectKind)
{
case ObjectKind.Player: return new PlayerCharacter(actorStruct, this.dalamud);
case ObjectKind.BattleNpc: return new BattleNpc(actorStruct, this.dalamud);
default: return new Actor(actorStruct, this.dalamud);
}
} catch (AccessViolationException) {
// FIXME: hack workaround for trying to access the player on logout, after the main object has been deleted
var sz = Marshal.SizeOf(typeof(Structs.Actor));
var actorMem = Marshal.AllocHGlobal(sz); // we arguably could just reuse this
if (!ReadProcessMemory(Process.GetCurrentProcess().Handle, offset, actorMem, sz, out _))
{
Log.Debug("ActorTable - ReadProcessMemory failed: likely player deletion during logout");
return null;
}
var actorStruct = Marshal.PtrToStructure<Structs.Actor>(actorMem);
Marshal.FreeHGlobal(actorMem);
//Log.Debug("ActorTable[{0}]: {1} - {2} - {3}", index, tblIndex.ToString("X"), offset.ToString("X"),
// actorStruct.ObjectKind.ToString());
switch (actorStruct.ObjectKind)
{
case ObjectKind.Player: return new PlayerCharacter(actorStruct, this.dalamud);
case ObjectKind.BattleNpc: return new BattleNpc(actorStruct, this.dalamud);
default: return new Actor(actorStruct, this.dalamud);
}
}
}

View file

@ -12,9 +12,23 @@ namespace Dalamud.Game.Internal.Gui {
[UnmanagedFunctionPointer(CallingConvention.ThisCall)]
private delegate IntPtr SetGlobalBgmDelegate(UInt16 bgmKey, byte a2, UInt32 a3, UInt32 a4, UInt32 a5, byte a6);
private readonly Hook<SetGlobalBgmDelegate> setGlobalBgmHook;
[UnmanagedFunctionPointer(CallingConvention.ThisCall)]
private delegate IntPtr HandleItemHoverDelegate(IntPtr hoverState, IntPtr a2, IntPtr a3, ulong a4);
private readonly Hook<HandleItemHoverDelegate> handleItemHoverHook;
/// <summary>
/// The item ID that is currently hovered by the player. 0 when no item is hovered.
/// If > 1.000.000, subtract 1.000.000 and treat it as HQ
/// </summary>
public ulong HoveredItem { get; set; }
/// <summary>
/// Event that is fired when the currently hovered item changes.
/// </summary>
public EventHandler<ulong> HoveredItemChanged { get; set; }
public GameGui(IntPtr baseAddress, SigScanner scanner, Dalamud dalamud) {
Address = new GameGuiAddressResolver(baseAddress);
Address.Setup(scanner);
@ -23,6 +37,7 @@ namespace Dalamud.Game.Internal.Gui {
Log.Verbose("GameGuiManager address {Address}", Address.BaseAddress);
Log.Verbose("SetGlobalBgm address {Address}", Address.SetGlobalBgm);
Log.Verbose("HandleItemHover address {Address}", Address.HandleItemHover);
Chat = new ChatGui(Address.ChatManager, scanner, dalamud);
@ -30,6 +45,10 @@ namespace Dalamud.Game.Internal.Gui {
new Hook<SetGlobalBgmDelegate>(Address.SetGlobalBgm,
new SetGlobalBgmDelegate(HandleSetGlobalBgmDetour),
this);
this.handleItemHoverHook =
new Hook<HandleItemHoverDelegate>(Address.HandleItemHover,
new HandleItemHoverDelegate(HandleItemHoverDetour),
this);
}
private IntPtr HandleSetGlobalBgmDetour(UInt16 bgmKey, byte a2, UInt32 a3, UInt32 a4, UInt32 a5, byte a6) {
@ -40,16 +59,36 @@ namespace Dalamud.Game.Internal.Gui {
return retVal;
}
private IntPtr HandleItemHoverDetour(IntPtr hoverState, IntPtr a2, IntPtr a3, ulong a4) {
var retVal = this.handleItemHoverHook.Original(hoverState, a2, a3, a4);
if (retVal.ToInt64() == 22) {
var itemId = (ulong)Marshal.ReadInt32(hoverState, 0x130);
try {
HoveredItemChanged?.Invoke(this, itemId);
} catch (Exception e) {
Log.Error(e, "Could not dispatch HoveredItemChanged event.");
}
Log.Verbose("HoverItemId: {0}", itemId);
}
return retVal;
}
public void SetBgm(ushort bgmKey) => this.setGlobalBgmHook.Original(bgmKey, 0, 0, 0, 0, 0);
public void Enable() {
Chat.Enable();
this.setGlobalBgmHook.Enable();
this.handleItemHoverHook.Enable();
}
public void Dispose() {
Chat.Dispose();
this.setGlobalBgmHook.Dispose();
this.handleItemHoverHook.Dispose();
}
}
}

View file

@ -9,6 +9,7 @@ namespace Dalamud.Game.Internal.Gui {
public IntPtr ChatManager { get; private set; }
public IntPtr SetGlobalBgm { get; private set; }
public IntPtr HandleItemHover { get; set; }
public GameGuiAddressResolver(IntPtr baseAddress) {
BaseAddress = baseAddress;
@ -24,8 +25,8 @@ namespace Dalamud.Game.Internal.Gui {
}
protected override void Setup64Bit(SigScanner sig) {
//SetGlobalBgm = sig.ScanText("4C 8B 15 ?? ?? ?? ?? 4D 85 D2 74 58 41 83 7A ?? ?? 76 51 4D 8B 92 ?? ?? ?? ?? 0F B6 44 24 ?? 49 81 C2 ?? ?? ?? ?? 66 41 89 4A ?? 33 C9 41 88 52 30 41 89 4A 14 66 41 89 4A ?? 41 88 42 12 49 89 4A 38 41 89 4A 40 49 89 4A 48 41 38 4A 30 74 14 8B 44 24 28 41 89 42 40 45 89 42 38");
SetGlobalBgm = sig.ScanText("4C 8B 15 ?? ?? ?? ?? 4D 85 D2 74 58");
HandleItemHover = sig.ScanText("E8 ?? ?? ?? ?? 48 8B 5C 24 ?? 48 89 AE ?? ?? ?? ??");
}
}
}

View file

@ -77,7 +77,10 @@ namespace Dalamud.Plugin
ImGui.PushID(pluginDefinition.InternalName + pluginDefinition.AssemblyVersion);
if (ImGui.CollapsingHeader(pluginDefinition.Name)) {
var isInstalled = this.manager.Plugins.Where(x => x.Definition != null).Any(
x => x.Definition.InternalName == pluginDefinition.InternalName);
if (ImGui.CollapsingHeader(pluginDefinition.Name + (isInstalled ? " (installed)" : string.Empty))) {
ImGui.Indent();
ImGui.Text(pluginDefinition.Name);
@ -86,9 +89,6 @@ namespace Dalamud.Plugin
ImGui.Text(pluginDefinition.Description);
var isInstalled = this.manager.Plugins.Where(x => x.Definition != null).Any(
x => x.Definition.InternalName == pluginDefinition.InternalName);
if (!isInstalled) {
if (this.installStatus == PluginInstallStatus.InProgress) {
ImGui.Button("Install in progress...");

View file

@ -142,11 +142,6 @@ namespace Dalamud.Plugin
// DisablePlugin() below immediately creates a .disabled file anyway, but will fail
// with an exception if we try to do it twice in row like this
// TODO: not sure if doing this for all versions is really necessary, since the
// others really needed to be disabled before anyway
//foreach (var sortedVersion in sortedVersions) {
// File.Create(Path.Combine(sortedVersion.FullName, ".disabled"));
//}
if (!dryRun)
{
@ -161,6 +156,18 @@ namespace Dalamud.Plugin
hasError = true;
}
try {
// Just to be safe
foreach (var sortedVersion in sortedVersions)
{
var disabledFile = new FileInfo(Path.Combine(sortedVersion.FullName, ".disabled"));
if (!disabledFile.Exists)
disabledFile.Create();
}
} catch (Exception ex) {
Log.Error(ex, "Plugin disable failed");
}
var installSuccess = InstallPlugin(remoteInfo);
if (installSuccess)

View file

@ -1,4 +1,4 @@
# Dalamud Plugin API
This is the documentation for the publicly accessible Dalamud plugin API. See the [market board plugin](https://github.com/goaaats/Dalamud.MbPlugin) as an example.
This is the documentation for the publicly accessible Dalamud plugin API. See the [rich presence plugin](https://github.com/goaaats/Dalamud.RichPresence) as an example.
All plugins have to implement the [IDalamudPlugin interface](Dalamud.Plugin.IDalamudPlugin.yml) that gives them access to objects like the chat command manager and game client information.

View file

@ -85,6 +85,7 @@
<h5>Implements</h5>
<div><span class="xref">System.Collections.ICollection</span></div>
<div><span class="xref">System.Collections.IEnumerable</span></div>
<div><span class="xref">System.IDisposable</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
@ -114,7 +115,7 @@
<h6><strong>Assembly</strong>: Dalamud.dll</h6>
<h5 id="Dalamud_Game_ClientState_Actors_ActorTable_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class ActorTable : ICollection, IEnumerable</code></pre>
<pre><code class="lang-csharp hljs">public class ActorTable : ICollection, IEnumerable, IDisposable</code></pre>
</div>
<h3 id="constructors">Constructors
</h3>
@ -123,7 +124,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Actors_ActorTable__ctor_Dalamud_Dalamud_Dalamud_Game_ClientState_ClientStateAddressResolver_.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Actors.ActorTable.%23ctor(Dalamud.Dalamud%2CDalamud.Game.ClientState.ClientStateAddressResolver)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L20">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L30">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_Actors_ActorTable__ctor_" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.#ctor*"></a>
<h4 id="Dalamud_Game_ClientState_Actors_ActorTable__ctor_Dalamud_Dalamud_Dalamud_Game_ClientState_ClientStateAddressResolver_" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.#ctor(Dalamud.Dalamud,Dalamud.Game.ClientState.ClientStateAddressResolver)">ActorTable(Dalamud, ClientStateAddressResolver)</h4>
@ -164,7 +165,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Actors_ActorTable_Item_System_Int32_.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Actors.ActorTable.Item(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L32">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L59">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_Actors_ActorTable_Item_" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.Item*"></a>
<h4 id="Dalamud_Game_ClientState_Actors_ActorTable_Item_System_Int32_" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.Item(System.Int32)">Item[Int32]</h4>
@ -214,7 +215,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Actors_ActorTable_Length.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Actors.ActorTable.Length%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L93">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L128">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_Actors_ActorTable_Length_" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.Length*"></a>
<h4 id="Dalamud_Game_ClientState_Actors_ActorTable_Length" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.Length">Length</h4>
@ -242,12 +243,42 @@
</table>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Actors_ActorTable_Dispose.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Actors.ActorTable.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L43">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_Actors_ActorTable_Dispose_" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.Dispose*"></a>
<h4 id="Dalamud_Game_ClientState_Actors_ActorTable_Dispose" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.Dispose">Dispose()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void Dispose()</code></pre>
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Actors_ActorTable_Enable.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Actors.ActorTable.Enable%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L39">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_Actors_ActorTable_Enable_" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.Enable*"></a>
<h4 id="Dalamud_Game_ClientState_Actors_ActorTable_Enable" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.Enable">Enable()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void Enable()</code></pre>
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Actors_ActorTable_GetEnumerator.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Actors.ActorTable.GetEnumerator%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L86">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L121">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_Actors_ActorTable_GetEnumerator_" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.GetEnumerator*"></a>
<h4 id="Dalamud_Game_ClientState_Actors_ActorTable_GetEnumerator" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.GetEnumerator">GetEnumerator()</h4>
@ -279,7 +310,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Actors_ActorTable_System_Collections_ICollection_CopyTo_System_Array_System_Int32_.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Actors.ActorTable.System%23Collections%23ICollection%23CopyTo(System.Array%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L101">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L136">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_Actors_ActorTable_System_Collections_ICollection_CopyTo_" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.System#Collections#ICollection#CopyTo*"></a>
<h4 id="Dalamud_Game_ClientState_Actors_ActorTable_System_Collections_ICollection_CopyTo_System_Array_System_Int32_" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">ICollection.CopyTo(Array, Int32)</h4>
@ -316,7 +347,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Actors_ActorTable_System_Collections_ICollection_Count.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Actors.ActorTable.System%23Collections%23ICollection%23Count%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L95">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L130">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_Actors_ActorTable_System_Collections_ICollection_Count_" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.System#Collections#ICollection#Count*"></a>
<h4 id="Dalamud_Game_ClientState_Actors_ActorTable_System_Collections_ICollection_Count" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.System#Collections#ICollection#Count">ICollection.Count</h4>
@ -346,7 +377,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Actors_ActorTable_System_Collections_ICollection_IsSynchronized.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Actors.ActorTable.System%23Collections%23ICollection%23IsSynchronized%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L97">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L132">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_Actors_ActorTable_System_Collections_ICollection_IsSynchronized_" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.System#Collections#ICollection#IsSynchronized*"></a>
<h4 id="Dalamud_Game_ClientState_Actors_ActorTable_System_Collections_ICollection_IsSynchronized" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.System#Collections#ICollection#IsSynchronized">ICollection.IsSynchronized</h4>
@ -376,7 +407,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Actors_ActorTable_System_Collections_ICollection_SyncRoot.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Actors.ActorTable.System%23Collections%23ICollection%23SyncRoot%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L99">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L134">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_Actors_ActorTable_System_Collections_ICollection_SyncRoot_" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.System#Collections#ICollection#SyncRoot*"></a>
<h4 id="Dalamud_Game_ClientState_Actors_ActorTable_System_Collections_ICollection_SyncRoot" data-uid="Dalamud.Game.ClientState.Actors.ActorTable.System#Collections#ICollection#SyncRoot">ICollection.SyncRoot</h4>
@ -408,6 +439,9 @@
<div>
<span class="xref">System.Collections.IEnumerable</span>
</div>
<div>
<span class="xref">System.IDisposable</span>
</div>
</article>
</div>
@ -419,7 +453,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Actors_ActorTable.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Actors.ActorTable%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L12" class="contribution-link">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/ActorTable.cs/#L14" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -156,7 +156,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Actors_Types_PlayerCharacter__ctor_Dalamud_Game_ClientState_Structs_Actor_Dalamud_Dalamud_.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.%23ctor(Dalamud.Game.ClientState.Structs.Actor%2CDalamud.Dalamud)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/Types/PlayerCharacter.cs/#L13">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/Types/PlayerCharacter.cs/#L14">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_Actors_Types_PlayerCharacter__ctor_" data-uid="Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.#ctor*"></a>
<h4 id="Dalamud_Game_ClientState_Actors_Types_PlayerCharacter__ctor_Dalamud_Game_ClientState_Structs_Actor_Dalamud_Dalamud_" data-uid="Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.#ctor(Dalamud.Game.ClientState.Structs.Actor,Dalamud.Dalamud)">PlayerCharacter(Actor, Dalamud)</h4>
@ -193,12 +193,43 @@
</table>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Actors_Types_PlayerCharacter_CompanyTag.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.CompanyTag%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/Types/PlayerCharacter.cs/#L29">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_Actors_Types_PlayerCharacter_CompanyTag_" data-uid="Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.CompanyTag*"></a>
<h4 id="Dalamud_Game_ClientState_Actors_Types_PlayerCharacter_CompanyTag" data-uid="Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.CompanyTag">CompanyTag</h4>
<div class="markdown level1 summary"><p>The Free Company tag of this player.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public string CompanyTag { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Actors_Types_PlayerCharacter_CurrentWorld.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.CurrentWorld%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/Types/PlayerCharacter.cs/#L18">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/Types/PlayerCharacter.cs/#L19">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_Actors_Types_PlayerCharacter_CurrentWorld_" data-uid="Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.CurrentWorld*"></a>
<h4 id="Dalamud_Game_ClientState_Actors_Types_PlayerCharacter_CurrentWorld" data-uid="Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.CurrentWorld">CurrentWorld</h4>
@ -229,7 +260,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Actors_Types_PlayerCharacter_HomeWorld.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.HomeWorld%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/Types/PlayerCharacter.cs/#L23">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/Types/PlayerCharacter.cs/#L24">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_Actors_Types_PlayerCharacter_HomeWorld_" data-uid="Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.HomeWorld*"></a>
<h4 id="Dalamud_Game_ClientState_Actors_Types_PlayerCharacter_HomeWorld" data-uid="Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.HomeWorld">HomeWorld</h4>
@ -266,7 +297,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Actors_Types_PlayerCharacter.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Actors.Types.PlayerCharacter%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/Types/PlayerCharacter.cs/#L7" class="contribution-link">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Actors/Types/PlayerCharacter.cs/#L8" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -84,6 +84,7 @@
<div classs="implements">
<h5>Implements</h5>
<div><span class="xref">System.ComponentModel.INotifyPropertyChanged</span></div>
<div><span class="xref">System.IDisposable</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
@ -113,7 +114,7 @@
<h6><strong>Assembly</strong>: Dalamud.dll</h6>
<h5 id="Dalamud_Game_ClientState_ClientState_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class ClientState : INotifyPropertyChanged</code></pre>
<pre><code class="lang-csharp hljs">public class ClientState : INotifyPropertyChanged, IDisposable</code></pre>
</div>
<h3 id="constructors">Constructors
</h3>
@ -122,7 +123,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_ClientState__ctor_Dalamud_Dalamud_Dalamud_DalamudStartInfo_Dalamud_Game_SigScanner_.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.ClientState.%23ctor(Dalamud.Dalamud%2CDalamud.DalamudStartInfo%2CDalamud.Game.SigScanner)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L60">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L94">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_ClientState__ctor_" data-uid="Dalamud.Game.ClientState.ClientState.#ctor*"></a>
<h4 id="Dalamud_Game_ClientState_ClientState__ctor_Dalamud_Dalamud_Dalamud_DalamudStartInfo_Dalamud_Game_SigScanner_" data-uid="Dalamud.Game.ClientState.ClientState.#ctor(Dalamud.Dalamud,Dalamud.DalamudStartInfo,Dalamud.Game.SigScanner)">ClientState(Dalamud, DalamudStartInfo, SigScanner)</h4>
@ -170,7 +171,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_ClientState_Actors.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.ClientState.Actors%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L23">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L27">View Source</a>
</span>
<h4 id="Dalamud_Game_ClientState_ClientState_Actors" data-uid="Dalamud.Game.ClientState.ClientState.Actors">Actors</h4>
<div class="markdown level1 summary"><p>The table of all present actors.</p>
@ -200,7 +201,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_ClientState_ClientLanguage.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.ClientState.ClientLanguage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L18">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L22">View Source</a>
</span>
<h4 id="Dalamud_Game_ClientState_ClientState_ClientLanguage" data-uid="Dalamud.Game.ClientState.ClientState.ClientLanguage">ClientLanguage</h4>
<div class="markdown level1 summary"></div>
@ -229,7 +230,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_ClientState_JobGauges.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.ClientState.JobGauges%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L52">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L81">View Source</a>
</span>
<h4 id="Dalamud_Game_ClientState_ClientState_JobGauges" data-uid="Dalamud.Game.ClientState.ClientState.JobGauges">JobGauges</h4>
<div class="markdown level1 summary"><p>The class facilitating Job Gauge data access</p>
@ -254,6 +255,96 @@
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_ClientState_KeyState.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.ClientState.KeyState%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L86">View Source</a>
</span>
<h4 id="Dalamud_Game_ClientState_ClientState_KeyState" data-uid="Dalamud.Game.ClientState.ClientState.KeyState">KeyState</h4>
<div class="markdown level1 summary"><p>Provides access to the keypress state of keyboard keys in game.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public KeyState KeyState</code></pre>
</div>
<h5 class="fieldValue">Field Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Dalamud.Game.ClientState.KeyState.html">KeyState</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_ClientState_TerritoryChanged.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.ClientState.TerritoryChanged%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L59">View Source</a>
</span>
<h4 id="Dalamud_Game_ClientState_ClientState_TerritoryChanged" data-uid="Dalamud.Game.ClientState.ClientState.TerritoryChanged">TerritoryChanged</h4>
<div class="markdown level1 summary"><p>Event that gets fired when the current Territory changes.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public EventHandler&lt;ushort&gt; TerritoryChanged</code></pre>
</div>
<h5 class="fieldValue">Field Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.EventHandler</span>&lt;<span class="xref">System.UInt16</span>&gt;</td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_ClientState_TerritoryType.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.ClientState.TerritoryType%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L54">View Source</a>
</span>
<h4 id="Dalamud_Game_ClientState_ClientState_TerritoryType" data-uid="Dalamud.Game.ClientState.ClientState.TerritoryType">TerritoryType</h4>
<div class="markdown level1 summary"><p>The current Territory the player resides in.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public ushort TerritoryType</code></pre>
</div>
<h5 class="fieldValue">Field Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.UInt16</span></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
@ -261,7 +352,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_ClientState_LocalContentId.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.ClientState.LocalContentId%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L47">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L76">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_ClientState_LocalContentId_" data-uid="Dalamud.Game.ClientState.ClientState.LocalContentId*"></a>
<h4 id="Dalamud_Game_ClientState_ClientState_LocalContentId" data-uid="Dalamud.Game.ClientState.ClientState.LocalContentId">LocalContentId</h4>
@ -292,7 +383,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_ClientState_LocalPlayer.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.ClientState.LocalPlayer%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L28">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L32">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_ClientState_LocalPlayer_" data-uid="Dalamud.Game.ClientState.ClientState.LocalPlayer*"></a>
<h4 id="Dalamud_Game_ClientState_ClientState_LocalPlayer" data-uid="Dalamud.Game.ClientState.ClientState.LocalPlayer">LocalPlayer</h4>
@ -318,37 +409,38 @@
</tr>
</tbody>
</table>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_ClientState_TerritoryType.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.ClientState.TerritoryType%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_ClientState_Dispose.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.ClientState.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L42">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L122">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_ClientState_TerritoryType_" data-uid="Dalamud.Game.ClientState.ClientState.TerritoryType*"></a>
<h4 id="Dalamud_Game_ClientState_ClientState_TerritoryType" data-uid="Dalamud.Game.ClientState.ClientState.TerritoryType">TerritoryType</h4>
<div class="markdown level1 summary"><p>The current Territory the player resides in.</p>
</div>
<a id="Dalamud_Game_ClientState_ClientState_Dispose_" data-uid="Dalamud.Game.ClientState.ClientState.Dispose*"></a>
<h4 id="Dalamud_Game_ClientState_ClientState_Dispose" data-uid="Dalamud.Game.ClientState.ClientState.Dispose">Dispose()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public uint TerritoryType { get; }</code></pre>
<pre><code class="lang-csharp hljs">public void Dispose()</code></pre>
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_ClientState_Enable.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.ClientState.Enable%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L117">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_ClientState_Enable_" data-uid="Dalamud.Game.ClientState.ClientState.Enable*"></a>
<h4 id="Dalamud_Game_ClientState_ClientState_Enable" data-uid="Dalamud.Game.ClientState.ClientState.Enable">Enable()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void Enable()</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.UInt32</span></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="events">Events
</h3>
<span class="small pull-right mobile-hide">
@ -356,7 +448,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_ClientState_PropertyChanged.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.ClientState.PropertyChanged%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L14">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L18">View Source</a>
</span>
<h4 id="Dalamud_Game_ClientState_ClientState_PropertyChanged" data-uid="Dalamud.Game.ClientState.ClientState.PropertyChanged">PropertyChanged</h4>
<div class="markdown level1 summary"></div>
@ -384,6 +476,9 @@
<div>
<span class="xref">System.ComponentModel.INotifyPropertyChanged</span>
</div>
<div>
<span class="xref">System.IDisposable</span>
</div>
</article>
</div>
@ -395,7 +490,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_ClientState.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.ClientState%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L13" class="contribution-link">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/ClientState.cs/#L17" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -0,0 +1,265 @@
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class KeyState
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class KeyState
">
<meta name="generator" content="docfx 2.48.1.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="">
<meta property="docfx:tocrel" content="toc.html">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="Dalamud.Game.ClientState.KeyState">
<h1 id="Dalamud_Game_ClientState_KeyState" data-uid="Dalamud.Game.ClientState.KeyState" class="text-break">Class KeyState
</h1>
<div class="markdown level0 summary"><p>Wrapper around the game keystate buffer, which contains the pressed state for
all keyboard keys, indexed by virtual vkCode</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">KeyState</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="Dalamud.Game.ClientState.html">Dalamud.Game.ClientState</a></h6>
<h6><strong>Assembly</strong>: Dalamud.dll</h6>
<h5 id="Dalamud_Game_ClientState_KeyState_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class KeyState</code></pre>
</div>
<h3 id="constructors">Constructors
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_KeyState__ctor_Dalamud_Game_ClientState_ClientStateAddressResolver_System_IntPtr_.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.KeyState.%23ctor(Dalamud.Game.ClientState.ClientStateAddressResolver%2CSystem.IntPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/KeyState.cs/#L20">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_KeyState__ctor_" data-uid="Dalamud.Game.ClientState.KeyState.#ctor*"></a>
<h4 id="Dalamud_Game_ClientState_KeyState__ctor_Dalamud_Game_ClientState_ClientStateAddressResolver_System_IntPtr_" data-uid="Dalamud.Game.ClientState.KeyState.#ctor(Dalamud.Game.ClientState.ClientStateAddressResolver,System.IntPtr)">KeyState(ClientStateAddressResolver, IntPtr)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public KeyState(ClientStateAddressResolver addressResolver, IntPtr moduleBaseAddress)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">Dalamud.Game.ClientState.ClientStateAddressResolver</span></td>
<td><span class="parametername">addressResolver</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.IntPtr</span></td>
<td><span class="parametername">moduleBaseAddress</span></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_KeyState_Item_System_Int32_.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.KeyState.Item(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/KeyState.cs/#L32">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_KeyState_Item_" data-uid="Dalamud.Game.ClientState.KeyState.Item*"></a>
<h4 id="Dalamud_Game_ClientState_KeyState_Item_System_Int32_" data-uid="Dalamud.Game.ClientState.KeyState.Item(System.Int32)">Item[Int32]</h4>
<div class="markdown level1 summary"><p>Get or set the keypressed state for a given vkCode.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool this[int vkCode] { get; set; }</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">vkCode</span></td>
<td><p>The virtual key to change.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><p>Whether the specified key is currently pressed.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_KeyState_ClearAll.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.KeyState.ClearAll%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/KeyState.cs/#L54">View Source</a>
</span>
<a id="Dalamud_Game_ClientState_KeyState_ClearAll_" data-uid="Dalamud.Game.ClientState.KeyState.ClearAll*"></a>
<h4 id="Dalamud_Game_ClientState_KeyState_ClearAll" data-uid="Dalamud.Game.ClientState.KeyState.ClearAll">ClearAll()</h4>
<div class="markdown level1 summary"><p>Clears the pressed state for all keys.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void ClearAll()</code></pre>
</div>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_KeyState.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.KeyState%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/KeyState.cs/#L11" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>

View file

@ -139,7 +139,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Structs_Actor_ClassJob.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Structs.Actor.ClassJob%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Structs/Actor.cs/#L30">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Structs/Actor.cs/#L34">View Source</a>
</span>
<h4 id="Dalamud_Game_ClientState_Structs_Actor_ClassJob" data-uid="Dalamud.Game.ClientState.Structs.Actor.ClassJob">ClassJob</h4>
<div class="markdown level1 summary"></div>
@ -165,11 +165,40 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Structs_Actor_CurrentHp.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Structs.Actor.CurrentHp%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Structs_Actor_CompanyTag.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Structs.Actor.CompanyTag%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Structs/Actor.cs/#L26">View Source</a>
</span>
<h4 id="Dalamud_Game_ClientState_Structs_Actor_CompanyTag" data-uid="Dalamud.Game.ClientState.Structs.Actor.CompanyTag">CompanyTag</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public byte[] CompanyTag</code></pre>
</div>
<h5 class="fieldValue">Field Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Byte</span>[]</td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Structs_Actor_CurrentHp.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Structs.Actor.CurrentHp%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Structs/Actor.cs/#L30">View Source</a>
</span>
<h4 id="Dalamud_Game_ClientState_Structs_Actor_CurrentHp" data-uid="Dalamud.Game.ClientState.Structs.Actor.CurrentHp">CurrentHp</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
@ -197,7 +226,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Structs_Actor_CurrentMp.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Structs.Actor.CurrentMp%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Structs/Actor.cs/#L28">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Structs/Actor.cs/#L32">View Source</a>
</span>
<h4 id="Dalamud_Game_ClientState_Structs_Actor_CurrentMp" data-uid="Dalamud.Game.ClientState.Structs.Actor.CurrentMp">CurrentMp</h4>
<div class="markdown level1 summary"></div>
@ -226,7 +255,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Structs_Actor_CurrentWorld.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Structs.Actor.CurrentWorld%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Structs/Actor.cs/#L24">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Structs/Actor.cs/#L28">View Source</a>
</span>
<h4 id="Dalamud_Game_ClientState_Structs_Actor_CurrentWorld" data-uid="Dalamud.Game.ClientState.Structs.Actor.CurrentWorld">CurrentWorld</h4>
<div class="markdown level1 summary"></div>
@ -284,7 +313,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Structs_Actor_HomeWorld.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Structs.Actor.HomeWorld%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Structs/Actor.cs/#L25">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Structs/Actor.cs/#L29">View Source</a>
</span>
<h4 id="Dalamud_Game_ClientState_Structs_Actor_HomeWorld" data-uid="Dalamud.Game.ClientState.Structs.Actor.HomeWorld">HomeWorld</h4>
<div class="markdown level1 summary"></div>
@ -342,7 +371,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Structs_Actor_Level.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Structs.Actor.Level%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Structs/Actor.cs/#L31">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Structs/Actor.cs/#L35">View Source</a>
</span>
<h4 id="Dalamud_Game_ClientState_Structs_Actor_Level" data-uid="Dalamud.Game.ClientState.Structs.Actor.Level">Level</h4>
<div class="markdown level1 summary"></div>
@ -371,7 +400,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Structs_Actor_MaxHp.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Structs.Actor.MaxHp%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Structs/Actor.cs/#L27">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Structs/Actor.cs/#L31">View Source</a>
</span>
<h4 id="Dalamud_Game_ClientState_Structs_Actor_MaxHp" data-uid="Dalamud.Game.ClientState.Structs.Actor.MaxHp">MaxHp</h4>
<div class="markdown level1 summary"></div>
@ -400,7 +429,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_ClientState_Structs_Actor_MaxMp.md&amp;value=---%0Auid%3A%20Dalamud.Game.ClientState.Structs.Actor.MaxMp%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Structs/Actor.cs/#L29">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/ClientState/Structs/Actor.cs/#L33">View Source</a>
</span>
<h4 id="Dalamud_Game_ClientState_Structs_Actor_MaxMp" data-uid="Dalamud.Game.ClientState.Structs.Actor.MaxMp">MaxMp</h4>
<div class="markdown level1 summary"></div>

View file

@ -82,6 +82,10 @@
</section>
<h4><a class="xref" href="Dalamud.Game.ClientState.JobGauges.html">JobGauges</a></h4>
<section></section>
<h4><a class="xref" href="Dalamud.Game.ClientState.KeyState.html">KeyState</a></h4>
<section><p>Wrapper around the game keystate buffer, which contains the pressed state for
all keyboard keys, indexed by virtual vkCode</p>
</section>
</article>
</div>

View file

@ -122,7 +122,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_Internal_Framework__ctor_Dalamud_Game_SigScanner_Dalamud_Dalamud_.md&amp;value=---%0Auid%3A%20Dalamud.Game.Internal.Framework.%23ctor(Dalamud.Game.SigScanner%2CDalamud.Dalamud)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/Internal/Framework.cs/#L48">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/Internal/Framework.cs/#L51">View Source</a>
</span>
<a id="Dalamud_Game_Internal_Framework__ctor_" data-uid="Dalamud.Game.Internal.Framework.#ctor*"></a>
<h4 id="Dalamud_Game_Internal_Framework__ctor_Dalamud_Game_SigScanner_Dalamud_Dalamud_" data-uid="Dalamud.Game.Internal.Framework.#ctor(Dalamud.Game.SigScanner,Dalamud.Dalamud)">Framework(SigScanner, Dalamud)</h4>
@ -161,7 +161,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_Internal_Framework_Address.md&amp;value=---%0Auid%3A%20Dalamud.Game.Internal.Framework.Address%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/Internal/Framework.cs/#L28">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/Internal/Framework.cs/#L31">View Source</a>
</span>
<a id="Dalamud_Game_Internal_Framework_Address_" data-uid="Dalamud.Game.Internal.Framework.Address*"></a>
<h4 id="Dalamud_Game_Internal_Framework_Address" data-uid="Dalamud.Game.Internal.Framework.Address">Address</h4>
@ -192,7 +192,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_Internal_Framework_Gui.md&amp;value=---%0Auid%3A%20Dalamud.Game.Internal.Framework.Gui%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/Internal/Framework.cs/#L35">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/Internal/Framework.cs/#L38">View Source</a>
</span>
<a id="Dalamud_Game_Internal_Framework_Gui_" data-uid="Dalamud.Game.Internal.Framework.Gui*"></a>
<h4 id="Dalamud_Game_Internal_Framework_Gui" data-uid="Dalamud.Game.Internal.Framework.Gui">Gui</h4>
@ -223,7 +223,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_Internal_Framework_Libc.md&amp;value=---%0Auid%3A%20Dalamud.Game.Internal.Framework.Libc%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/Internal/Framework.cs/#L44">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/Internal/Framework.cs/#L47">View Source</a>
</span>
<a id="Dalamud_Game_Internal_Framework_Libc_" data-uid="Dalamud.Game.Internal.Framework.Libc*"></a>
<h4 id="Dalamud_Game_Internal_Framework_Libc" data-uid="Dalamud.Game.Internal.Framework.Libc">Libc</h4>
@ -253,7 +253,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_Internal_Framework_Network.md&amp;value=---%0Auid%3A%20Dalamud.Game.Internal.Framework.Network%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/Internal/Framework.cs/#L40">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/Internal/Framework.cs/#L43">View Source</a>
</span>
<a id="Dalamud_Game_Internal_Framework_Network_" data-uid="Dalamud.Game.Internal.Framework.Network*"></a>
<h4 id="Dalamud_Game_Internal_Framework_Network" data-uid="Dalamud.Game.Internal.Framework.Network">Network</h4>
@ -286,7 +286,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_Internal_Framework_Dispose.md&amp;value=---%0Auid%3A%20Dalamud.Game.Internal.Framework.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/Internal/Framework.cs/#L91">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/Internal/Framework.cs/#L94">View Source</a>
</span>
<a id="Dalamud_Game_Internal_Framework_Dispose_" data-uid="Dalamud.Game.Internal.Framework.Dispose*"></a>
<h4 id="Dalamud_Game_Internal_Framework_Dispose" data-uid="Dalamud.Game.Internal.Framework.Dispose">Dispose()</h4>
@ -301,7 +301,7 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_Internal_Framework_Enable.md&amp;value=---%0Auid%3A%20Dalamud.Game.Internal.Framework.Enable%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/Internal/Framework.cs/#L83">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/Internal/Framework.cs/#L86">View Source</a>
</span>
<a id="Dalamud_Game_Internal_Framework_Enable_" data-uid="Dalamud.Game.Internal.Framework.Enable*"></a>
<h4 id="Dalamud_Game_Internal_Framework_Enable" data-uid="Dalamud.Game.Internal.Framework.Enable">Enable()</h4>
@ -318,10 +318,11 @@
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_Internal_Framework_OnUpdateEvent.md&amp;value=---%0Auid%3A%20Dalamud.Game.Internal.Framework.OnUpdateEvent%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/Internal/Framework.cs/#L20">View Source</a>
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/Internal/Framework.cs/#L23">View Source</a>
</span>
<h4 id="Dalamud_Game_Internal_Framework_OnUpdateEvent" data-uid="Dalamud.Game.Internal.Framework.OnUpdateEvent">OnUpdateEvent</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 summary"><p>Event that gets fired every time the game framework updates.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">

View file

@ -101,6 +101,7 @@
<h5 id="ImGuiNET_RangeAccessor_1_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public struct RangeAccessor&lt;T&gt;
where T : struct</code></pre>
</div>
<h5 class="typeParameters">Type Parameters</h5>

View file

@ -101,6 +101,7 @@
<h5 id="ImGuiNET_RangePtrAccessor_1_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public struct RangePtrAccessor&lt;T&gt;
where T : struct</code></pre>
</div>
<h5 class="typeParameters">Type Parameters</h5>

View file

@ -122,10 +122,10 @@ This will disable vsync regardless of the fps value.</p>
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_FramerateLimit_LimitType.md&amp;value=---%0Auid%3A%20ImGuiScene.FramerateLimit.LimitType%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_FramerateLimit_LimitType.md&amp;value=---%0Auid%3A%20ImGuiScene.FramerateLimit.LimitType%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/FramerateLimit.cs/#L14" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/FramerateLimit.cs/#L14" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -113,10 +113,10 @@ Vsync-enabled (sync to monitor refresh), or a specified fixed framerate (vsync d
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_FramerateLimit__ctor_ImGuiScene_FramerateLimit_LimitType_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.FramerateLimit.%23ctor(ImGuiScene.FramerateLimit.LimitType%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_FramerateLimit__ctor_ImGuiScene_FramerateLimit_LimitType_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.FramerateLimit.%23ctor(ImGuiScene.FramerateLimit.LimitType%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/FramerateLimit.cs/#L56">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/FramerateLimit.cs/#L56">View Source</a>
</span>
<a id="ImGuiScene_FramerateLimit__ctor_" data-uid="ImGuiScene.FramerateLimit.#ctor*"></a>
<h4 id="ImGuiScene_FramerateLimit__ctor_ImGuiScene_FramerateLimit_LimitType_System_Int32_" data-uid="ImGuiScene.FramerateLimit.#ctor(ImGuiScene.FramerateLimit.LimitType,System.Int32)">FramerateLimit(FramerateLimit.LimitType, Int32)</h4>
@ -155,10 +155,10 @@ Vsync-enabled (sync to monitor refresh), or a specified fixed framerate (vsync d
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_FramerateLimit_FPS.md&amp;value=---%0Auid%3A%20ImGuiScene.FramerateLimit.FPS%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_FramerateLimit_FPS.md&amp;value=---%0Auid%3A%20ImGuiScene.FramerateLimit.FPS%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/FramerateLimit.cs/#L40">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/FramerateLimit.cs/#L40">View Source</a>
</span>
<a id="ImGuiScene_FramerateLimit_FPS_" data-uid="ImGuiScene.FramerateLimit.FPS*"></a>
<h4 id="ImGuiScene_FramerateLimit_FPS" data-uid="ImGuiScene.FramerateLimit.FPS">FPS</h4>
@ -186,10 +186,10 @@ Vsync-enabled (sync to monitor refresh), or a specified fixed framerate (vsync d
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_FramerateLimit_Type.md&amp;value=---%0Auid%3A%20ImGuiScene.FramerateLimit.Type%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_FramerateLimit_Type.md&amp;value=---%0Auid%3A%20ImGuiScene.FramerateLimit.Type%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/FramerateLimit.cs/#L34">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/FramerateLimit.cs/#L34">View Source</a>
</span>
<a id="ImGuiScene_FramerateLimit_Type_" data-uid="ImGuiScene.FramerateLimit.Type*"></a>
<h4 id="ImGuiScene_FramerateLimit_Type" data-uid="ImGuiScene.FramerateLimit.Type">Type</h4>
@ -219,10 +219,10 @@ Vsync-enabled (sync to monitor refresh), or a specified fixed framerate (vsync d
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_FramerateLimit_ToString.md&amp;value=---%0Auid%3A%20ImGuiScene.FramerateLimit.ToString%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_FramerateLimit_ToString.md&amp;value=---%0Auid%3A%20ImGuiScene.FramerateLimit.ToString%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/FramerateLimit.cs/#L67">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/FramerateLimit.cs/#L67">View Source</a>
</span>
<a id="ImGuiScene_FramerateLimit_ToString_" data-uid="ImGuiScene.FramerateLimit.ToString*"></a>
<h4 id="ImGuiScene_FramerateLimit_ToString" data-uid="ImGuiScene.FramerateLimit.ToString">ToString()</h4>
@ -257,10 +257,10 @@ Vsync-enabled (sync to monitor refresh), or a specified fixed framerate (vsync d
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_FramerateLimit.md&amp;value=---%0Auid%3A%20ImGuiScene.FramerateLimit%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_FramerateLimit.md&amp;value=---%0Auid%3A%20ImGuiScene.FramerateLimit%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/FramerateLimit.cs/#L9" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/FramerateLimit.cs/#L9" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -121,10 +121,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_GLTextureWrap__ctor_System_UInt32_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.GLTextureWrap.%23ctor(System.UInt32%2CSystem.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_GLTextureWrap__ctor_System_UInt32_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.GLTextureWrap.%23ctor(System.UInt32%2CSystem.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L241">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L241">View Source</a>
</span>
<a id="ImGuiScene_GLTextureWrap__ctor_" data-uid="ImGuiScene.GLTextureWrap.#ctor*"></a>
<h4 id="ImGuiScene_GLTextureWrap__ctor_System_UInt32_System_Int32_System_Int32_" data-uid="ImGuiScene.GLTextureWrap.#ctor(System.UInt32,System.Int32,System.Int32)">GLTextureWrap(UInt32, Int32, Int32)</h4>
@ -165,10 +165,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_GLTextureWrap_Height.md&amp;value=---%0Auid%3A%20ImGuiScene.GLTextureWrap.Height%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_GLTextureWrap_Height.md&amp;value=---%0Auid%3A%20ImGuiScene.GLTextureWrap.Height%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L239">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L239">View Source</a>
</span>
<a id="ImGuiScene_GLTextureWrap_Height_" data-uid="ImGuiScene.GLTextureWrap.Height*"></a>
<h4 id="ImGuiScene_GLTextureWrap_Height" data-uid="ImGuiScene.GLTextureWrap.Height">Height</h4>
@ -195,10 +195,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_GLTextureWrap_ImGuiHandle.md&amp;value=---%0Auid%3A%20ImGuiScene.GLTextureWrap.ImGuiHandle%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_GLTextureWrap_ImGuiHandle.md&amp;value=---%0Auid%3A%20ImGuiScene.GLTextureWrap.ImGuiHandle%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L237">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L237">View Source</a>
</span>
<a id="ImGuiScene_GLTextureWrap_ImGuiHandle_" data-uid="ImGuiScene.GLTextureWrap.ImGuiHandle*"></a>
<h4 id="ImGuiScene_GLTextureWrap_ImGuiHandle" data-uid="ImGuiScene.GLTextureWrap.ImGuiHandle">ImGuiHandle</h4>
@ -225,10 +225,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_GLTextureWrap_Width.md&amp;value=---%0Auid%3A%20ImGuiScene.GLTextureWrap.Width%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_GLTextureWrap_Width.md&amp;value=---%0Auid%3A%20ImGuiScene.GLTextureWrap.Width%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L238">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L238">View Source</a>
</span>
<a id="ImGuiScene_GLTextureWrap_Width_" data-uid="ImGuiScene.GLTextureWrap.Width*"></a>
<h4 id="ImGuiScene_GLTextureWrap_Width" data-uid="ImGuiScene.GLTextureWrap.Width">Width</h4>
@ -257,10 +257,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_GLTextureWrap_Dispose.md&amp;value=---%0Auid%3A%20ImGuiScene.GLTextureWrap.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_GLTextureWrap_Dispose.md&amp;value=---%0Auid%3A%20ImGuiScene.GLTextureWrap.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L279">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L279">View Source</a>
</span>
<a id="ImGuiScene_GLTextureWrap_Dispose_" data-uid="ImGuiScene.GLTextureWrap.Dispose*"></a>
<h4 id="ImGuiScene_GLTextureWrap_Dispose" data-uid="ImGuiScene.GLTextureWrap.Dispose">Dispose()</h4>
@ -272,10 +272,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_GLTextureWrap_Dispose_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.GLTextureWrap.Dispose(System.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_GLTextureWrap_Dispose_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.GLTextureWrap.Dispose(System.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L251">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L251">View Source</a>
</span>
<a id="ImGuiScene_GLTextureWrap_Dispose_" data-uid="ImGuiScene.GLTextureWrap.Dispose*"></a>
<h4 id="ImGuiScene_GLTextureWrap_Dispose_System_Boolean_" data-uid="ImGuiScene.GLTextureWrap.Dispose(System.Boolean)">Dispose(Boolean)</h4>
@ -304,10 +304,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_GLTextureWrap_Finalize.md&amp;value=---%0Auid%3A%20ImGuiScene.GLTextureWrap.Finalize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_GLTextureWrap_Finalize.md&amp;value=---%0Auid%3A%20ImGuiScene.GLTextureWrap.Finalize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L273">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L273">View Source</a>
</span>
<a id="ImGuiScene_GLTextureWrap_Finalize_" data-uid="ImGuiScene.GLTextureWrap.Finalize*"></a>
<h4 id="ImGuiScene_GLTextureWrap_Finalize" data-uid="ImGuiScene.GLTextureWrap.Finalize">Finalize()</h4>
@ -332,10 +332,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_GLTextureWrap.md&amp;value=---%0Auid%3A%20ImGuiScene.GLTextureWrap%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_GLTextureWrap.md&amp;value=---%0Auid%3A%20ImGuiScene.GLTextureWrap%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L235" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L235" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -91,10 +91,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IImGuiInputHandler_NewFrame_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.IImGuiInputHandler.NewFrame(System.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IImGuiInputHandler_NewFrame_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.IImGuiInputHandler.NewFrame(System.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/IImGuiInputHandler.cs/#L8">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/IImGuiInputHandler.cs/#L8">View Source</a>
</span>
<a id="ImGuiScene_IImGuiInputHandler_NewFrame_" data-uid="ImGuiScene.IImGuiInputHandler.NewFrame*"></a>
<h4 id="ImGuiScene_IImGuiInputHandler_NewFrame_System_Int32_System_Int32_" data-uid="ImGuiScene.IImGuiInputHandler.NewFrame(System.Int32,System.Int32)">NewFrame(Int32, Int32)</h4>
@ -128,10 +128,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IImGuiInputHandler_SetIniPath_System_String_.md&amp;value=---%0Auid%3A%20ImGuiScene.IImGuiInputHandler.SetIniPath(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IImGuiInputHandler_SetIniPath_System_String_.md&amp;value=---%0Auid%3A%20ImGuiScene.IImGuiInputHandler.SetIniPath(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/IImGuiInputHandler.cs/#L9">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/IImGuiInputHandler.cs/#L9">View Source</a>
</span>
<a id="ImGuiScene_IImGuiInputHandler_SetIniPath_" data-uid="ImGuiScene.IImGuiInputHandler.SetIniPath*"></a>
<h4 id="ImGuiScene_IImGuiInputHandler_SetIniPath_System_String_" data-uid="ImGuiScene.IImGuiInputHandler.SetIniPath(System.String)">SetIniPath(String)</h4>
@ -166,10 +166,10 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IImGuiInputHandler.md&amp;value=---%0Auid%3A%20ImGuiScene.IImGuiInputHandler%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IImGuiInputHandler.md&amp;value=---%0Auid%3A%20ImGuiScene.IImGuiInputHandler%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/IImGuiInputHandler.cs/#L6" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/IImGuiInputHandler.cs/#L6" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -86,10 +86,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IImGuiRenderer_Init_System_Object___.md&amp;value=---%0Auid%3A%20ImGuiScene.IImGuiRenderer.Init(System.Object%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IImGuiRenderer_Init_System_Object___.md&amp;value=---%0Auid%3A%20ImGuiScene.IImGuiRenderer.Init(System.Object%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/IImGuiRenderer.cs/#L11">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/IImGuiRenderer.cs/#L11">View Source</a>
</span>
<a id="ImGuiScene_IImGuiRenderer_Init_" data-uid="ImGuiScene.IImGuiRenderer.Init*"></a>
<h4 id="ImGuiScene_IImGuiRenderer_Init_System_Object___" data-uid="ImGuiScene.IImGuiRenderer.Init(System.Object[])">Init(Object[])</h4>
@ -118,10 +118,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IImGuiRenderer_NewFrame.md&amp;value=---%0Auid%3A%20ImGuiScene.IImGuiRenderer.NewFrame%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IImGuiRenderer_NewFrame.md&amp;value=---%0Auid%3A%20ImGuiScene.IImGuiRenderer.NewFrame%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/IImGuiRenderer.cs/#L13">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/IImGuiRenderer.cs/#L13">View Source</a>
</span>
<a id="ImGuiScene_IImGuiRenderer_NewFrame_" data-uid="ImGuiScene.IImGuiRenderer.NewFrame*"></a>
<h4 id="ImGuiScene_IImGuiRenderer_NewFrame" data-uid="ImGuiScene.IImGuiRenderer.NewFrame">NewFrame()</h4>
@ -133,10 +133,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IImGuiRenderer_RenderDrawData_ImGuiNET_ImDrawDataPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.IImGuiRenderer.RenderDrawData(ImGuiNET.ImDrawDataPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IImGuiRenderer_RenderDrawData_ImGuiNET_ImDrawDataPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.IImGuiRenderer.RenderDrawData(ImGuiNET.ImDrawDataPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/IImGuiRenderer.cs/#L14">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/IImGuiRenderer.cs/#L14">View Source</a>
</span>
<a id="ImGuiScene_IImGuiRenderer_RenderDrawData_" data-uid="ImGuiScene.IImGuiRenderer.RenderDrawData*"></a>
<h4 id="ImGuiScene_IImGuiRenderer_RenderDrawData_ImGuiNET_ImDrawDataPtr_" data-uid="ImGuiScene.IImGuiRenderer.RenderDrawData(ImGuiNET.ImDrawDataPtr)">RenderDrawData(ImDrawDataPtr)</h4>
@ -165,10 +165,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IImGuiRenderer_Shutdown.md&amp;value=---%0Auid%3A%20ImGuiScene.IImGuiRenderer.Shutdown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IImGuiRenderer_Shutdown.md&amp;value=---%0Auid%3A%20ImGuiScene.IImGuiRenderer.Shutdown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/IImGuiRenderer.cs/#L12">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/IImGuiRenderer.cs/#L12">View Source</a>
</span>
<a id="ImGuiScene_IImGuiRenderer_Shutdown_" data-uid="ImGuiScene.IImGuiRenderer.Shutdown*"></a>
<h4 id="ImGuiScene_IImGuiRenderer_Shutdown" data-uid="ImGuiScene.IImGuiRenderer.Shutdown">Shutdown()</h4>
@ -186,10 +186,10 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IImGuiRenderer.md&amp;value=---%0Auid%3A%20ImGuiScene.IImGuiRenderer%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IImGuiRenderer.md&amp;value=---%0Auid%3A%20ImGuiScene.IImGuiRenderer%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/IImGuiRenderer.cs/#L8" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/IImGuiRenderer.cs/#L8" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -92,10 +92,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IRenderer_ClearColor.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.ClearColor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IRenderer_ClearColor.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.ClearColor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/IRenderer.cs/#L21">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/IRenderer.cs/#L21">View Source</a>
</span>
<a id="ImGuiScene_IRenderer_ClearColor_" data-uid="ImGuiScene.IRenderer.ClearColor*"></a>
<h4 id="ImGuiScene_IRenderer_ClearColor" data-uid="ImGuiScene.IRenderer.ClearColor">ClearColor</h4>
@ -123,10 +123,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IRenderer_Debuggable.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.Debuggable%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IRenderer_Debuggable.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.Debuggable%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/IRenderer.cs/#L31">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/IRenderer.cs/#L31">View Source</a>
</span>
<a id="ImGuiScene_IRenderer_Debuggable_" data-uid="ImGuiScene.IRenderer.Debuggable*"></a>
<h4 id="ImGuiScene_IRenderer_Debuggable" data-uid="ImGuiScene.IRenderer.Debuggable">Debuggable</h4>
@ -154,10 +154,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IRenderer_Type.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.Type%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IRenderer_Type.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.Type%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/IRenderer.cs/#L16">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/IRenderer.cs/#L16">View Source</a>
</span>
<a id="ImGuiScene_IRenderer_Type_" data-uid="ImGuiScene.IRenderer.Type*"></a>
<h4 id="ImGuiScene_IRenderer_Type" data-uid="ImGuiScene.IRenderer.Type">Type</h4>
@ -185,10 +185,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IRenderer_Vsync.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.Vsync%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IRenderer_Vsync.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.Vsync%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/IRenderer.cs/#L26">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/IRenderer.cs/#L26">View Source</a>
</span>
<a id="ImGuiScene_IRenderer_Vsync_" data-uid="ImGuiScene.IRenderer.Vsync*"></a>
<h4 id="ImGuiScene_IRenderer_Vsync" data-uid="ImGuiScene.IRenderer.Vsync">Vsync</h4>
@ -218,10 +218,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IRenderer_AttachToWindow_ImGuiScene_SimpleSDLWindow_.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.AttachToWindow(ImGuiScene.SimpleSDLWindow)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IRenderer_AttachToWindow_ImGuiScene_SimpleSDLWindow_.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.AttachToWindow(ImGuiScene.SimpleSDLWindow)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/IRenderer.cs/#L42">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/IRenderer.cs/#L42">View Source</a>
</span>
<a id="ImGuiScene_IRenderer_AttachToWindow_" data-uid="ImGuiScene.IRenderer.AttachToWindow*"></a>
<h4 id="ImGuiScene_IRenderer_AttachToWindow_ImGuiScene_SimpleSDLWindow_" data-uid="ImGuiScene.IRenderer.AttachToWindow(ImGuiScene.SimpleSDLWindow)">AttachToWindow(SimpleSDLWindow)</h4>
@ -255,10 +255,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IRenderer_Clear.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.Clear%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IRenderer_Clear.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.Clear%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/IRenderer.cs/#L47">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/IRenderer.cs/#L47">View Source</a>
</span>
<a id="ImGuiScene_IRenderer_Clear_" data-uid="ImGuiScene.IRenderer.Clear*"></a>
<h4 id="ImGuiScene_IRenderer_Clear" data-uid="ImGuiScene.IRenderer.Clear">Clear()</h4>
@ -271,10 +271,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IRenderer_CreateTexture_System_Void__System_Int32_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.CreateTexture(System.Void*%2CSystem.Int32%2CSystem.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IRenderer_CreateTexture_System_Void__System_Int32_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.CreateTexture(System.Void*%2CSystem.Int32%2CSystem.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/IRenderer.cs/#L63">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/IRenderer.cs/#L63">View Source</a>
</span>
<a id="ImGuiScene_IRenderer_CreateTexture_" data-uid="ImGuiScene.IRenderer.CreateTexture*"></a>
<h4 id="ImGuiScene_IRenderer_CreateTexture_System_Void__System_Int32_System_Int32_System_Int32_" data-uid="ImGuiScene.IRenderer.CreateTexture(System.Void*,System.Int32,System.Int32,System.Int32)">CreateTexture(Void*, Int32, Int32, Int32)</h4>
@ -342,10 +342,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IRenderer_ImGui_Init.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.ImGui_Init%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IRenderer_ImGui_Init.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.ImGui_Init%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/IRenderer.cs/#L67">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/IRenderer.cs/#L67">View Source</a>
</span>
<a id="ImGuiScene_IRenderer_ImGui_Init_" data-uid="ImGuiScene.IRenderer.ImGui_Init*"></a>
<h4 id="ImGuiScene_IRenderer_ImGui_Init" data-uid="ImGuiScene.IRenderer.ImGui_Init">ImGui_Init()</h4>
@ -357,10 +357,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IRenderer_ImGui_NewFrame.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.ImGui_NewFrame%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IRenderer_ImGui_NewFrame.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.ImGui_NewFrame%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/IRenderer.cs/#L69">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/IRenderer.cs/#L69">View Source</a>
</span>
<a id="ImGuiScene_IRenderer_ImGui_NewFrame_" data-uid="ImGuiScene.IRenderer.ImGui_NewFrame*"></a>
<h4 id="ImGuiScene_IRenderer_ImGui_NewFrame" data-uid="ImGuiScene.IRenderer.ImGui_NewFrame">ImGui_NewFrame()</h4>
@ -372,10 +372,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IRenderer_ImGui_RenderDrawData_ImGuiNET_ImDrawDataPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.ImGui_RenderDrawData(ImGuiNET.ImDrawDataPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IRenderer_ImGui_RenderDrawData_ImGuiNET_ImDrawDataPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.ImGui_RenderDrawData(ImGuiNET.ImDrawDataPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/IRenderer.cs/#L70">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/IRenderer.cs/#L70">View Source</a>
</span>
<a id="ImGuiScene_IRenderer_ImGui_RenderDrawData_" data-uid="ImGuiScene.IRenderer.ImGui_RenderDrawData*"></a>
<h4 id="ImGuiScene_IRenderer_ImGui_RenderDrawData_ImGuiNET_ImDrawDataPtr_" data-uid="ImGuiScene.IRenderer.ImGui_RenderDrawData(ImGuiNET.ImDrawDataPtr)">ImGui_RenderDrawData(ImDrawDataPtr)</h4>
@ -404,10 +404,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IRenderer_ImGui_Shutdown.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.ImGui_Shutdown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IRenderer_ImGui_Shutdown.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.ImGui_Shutdown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/IRenderer.cs/#L68">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/IRenderer.cs/#L68">View Source</a>
</span>
<a id="ImGuiScene_IRenderer_ImGui_Shutdown_" data-uid="ImGuiScene.IRenderer.ImGui_Shutdown*"></a>
<h4 id="ImGuiScene_IRenderer_ImGui_Shutdown" data-uid="ImGuiScene.IRenderer.ImGui_Shutdown">ImGui_Shutdown()</h4>
@ -419,10 +419,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IRenderer_Present.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.Present%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IRenderer_Present.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer.Present%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/IRenderer.cs/#L52">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/IRenderer.cs/#L52">View Source</a>
</span>
<a id="ImGuiScene_IRenderer_Present_" data-uid="ImGuiScene.IRenderer.Present*"></a>
<h4 id="ImGuiScene_IRenderer_Present" data-uid="ImGuiScene.IRenderer.Present">Present()</h4>
@ -441,10 +441,10 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_IRenderer.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_IRenderer.md&amp;value=---%0Auid%3A%20ImGuiScene.IRenderer%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/IRenderer.cs/#L11" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/IRenderer.cs/#L11" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -124,10 +124,10 @@ Would be nice to organize it better, but it seems to work</p>
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11_CreateDeviceObjects.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11.CreateDeviceObjects%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11_CreateDeviceObjects.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11.CreateDeviceObjects%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L505">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L505">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_DX11_CreateDeviceObjects_" data-uid="ImGuiScene.ImGui_Impl_DX11.CreateDeviceObjects*"></a>
<h4 id="ImGuiScene_ImGui_Impl_DX11_CreateDeviceObjects" data-uid="ImGuiScene.ImGui_Impl_DX11.CreateDeviceObjects">CreateDeviceObjects()</h4>
@ -154,10 +154,10 @@ Would be nice to organize it better, but it seems to work</p>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11_CreateFontsTexture.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11.CreateFontsTexture%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11_CreateFontsTexture.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11.CreateFontsTexture%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L454">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L454">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_DX11_CreateFontsTexture_" data-uid="ImGuiScene.ImGui_Impl_DX11.CreateFontsTexture*"></a>
<h4 id="ImGuiScene_ImGui_Impl_DX11_CreateFontsTexture" data-uid="ImGuiScene.ImGui_Impl_DX11.CreateFontsTexture">CreateFontsTexture()</h4>
@ -169,10 +169,10 @@ Would be nice to organize it better, but it seems to work</p>
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11_Init_System_Object___.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11.Init(System.Object%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11_Init_System_Object___.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11.Init(System.Object%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L649">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L649">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_DX11_Init_" data-uid="ImGuiScene.ImGui_Impl_DX11.Init*"></a>
<h4 id="ImGuiScene_ImGui_Impl_DX11_Init_System_Object___" data-uid="ImGuiScene.ImGui_Impl_DX11.Init(System.Object[])">Init(Object[])</h4>
@ -201,10 +201,10 @@ Would be nice to organize it better, but it seems to work</p>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11_InvalidateDeviceObjects.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11.InvalidateDeviceObjects%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11_InvalidateDeviceObjects.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11.InvalidateDeviceObjects%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L607">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L607">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_DX11_InvalidateDeviceObjects_" data-uid="ImGuiScene.ImGui_Impl_DX11.InvalidateDeviceObjects*"></a>
<h4 id="ImGuiScene_ImGui_Impl_DX11_InvalidateDeviceObjects" data-uid="ImGuiScene.ImGui_Impl_DX11.InvalidateDeviceObjects">InvalidateDeviceObjects()</h4>
@ -216,10 +216,10 @@ Would be nice to organize it better, but it seems to work</p>
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11_NewFrame.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11.NewFrame%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11_NewFrame.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11.NewFrame%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L681">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L681">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_DX11_NewFrame_" data-uid="ImGuiScene.ImGui_Impl_DX11.NewFrame*"></a>
<h4 id="ImGuiScene_ImGui_Impl_DX11_NewFrame" data-uid="ImGuiScene.ImGui_Impl_DX11.NewFrame">NewFrame()</h4>
@ -231,10 +231,10 @@ Would be nice to organize it better, but it seems to work</p>
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11_RenderDrawData_ImGuiNET_ImDrawDataPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11.RenderDrawData(ImGuiNET.ImDrawDataPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11_RenderDrawData_ImGuiNET_ImDrawDataPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11.RenderDrawData(ImGuiNET.ImDrawDataPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L307">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L307">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_DX11_RenderDrawData_" data-uid="ImGuiScene.ImGui_Impl_DX11.RenderDrawData*"></a>
<h4 id="ImGuiScene_ImGui_Impl_DX11_RenderDrawData_ImGuiNET_ImDrawDataPtr_" data-uid="ImGuiScene.ImGui_Impl_DX11.RenderDrawData(ImGuiNET.ImDrawDataPtr)">RenderDrawData(ImDrawDataPtr)</h4>
@ -263,10 +263,10 @@ Would be nice to organize it better, but it seems to work</p>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11_SetupRenderState_ImGuiNET_ImDrawDataPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11.SetupRenderState(ImGuiNET.ImDrawDataPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11_SetupRenderState_ImGuiNET_ImDrawDataPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11.SetupRenderState(ImGuiNET.ImDrawDataPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L280">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L280">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_DX11_SetupRenderState_" data-uid="ImGuiScene.ImGui_Impl_DX11.SetupRenderState*"></a>
<h4 id="ImGuiScene_ImGui_Impl_DX11_SetupRenderState_ImGuiNET_ImDrawDataPtr_" data-uid="ImGuiScene.ImGui_Impl_DX11.SetupRenderState(ImGuiNET.ImDrawDataPtr)">SetupRenderState(ImDrawDataPtr)</h4>
@ -295,10 +295,10 @@ Would be nice to organize it better, but it seems to work</p>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11_Shutdown.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11.Shutdown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11_Shutdown.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11.Shutdown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L666">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L666">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_DX11_Shutdown_" data-uid="ImGuiScene.ImGui_Impl_DX11.Shutdown*"></a>
<h4 id="ImGuiScene_ImGui_Impl_DX11_Shutdown" data-uid="ImGuiScene.ImGui_Impl_DX11.Shutdown">Shutdown()</h4>
@ -320,10 +320,10 @@ Would be nice to organize it better, but it seems to work</p>
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_DX11.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_DX11%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L25" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_DX11.cs/#L25" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -121,10 +121,10 @@ State backup IS done for this renderer, because SDL does not play nicely when us
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_OpenGL3_Init_System_Object___.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_OpenGL3.Init(System.Object%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_OpenGL3_Init_System_Object___.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_OpenGL3.Init(System.Object%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_OpenGL3.cs/#L177">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_OpenGL3.cs/#L177">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_OpenGL3_Init_" data-uid="ImGuiScene.ImGui_Impl_OpenGL3.Init*"></a>
<h4 id="ImGuiScene_ImGui_Impl_OpenGL3_Init_System_Object___" data-uid="ImGuiScene.ImGui_Impl_OpenGL3.Init(System.Object[])">Init(Object[])</h4>
@ -153,10 +153,10 @@ State backup IS done for this renderer, because SDL does not play nicely when us
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_OpenGL3_NewFrame.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_OpenGL3.NewFrame%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_OpenGL3_NewFrame.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_OpenGL3.NewFrame%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_OpenGL3.cs/#L204">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_OpenGL3.cs/#L204">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_OpenGL3_NewFrame_" data-uid="ImGuiScene.ImGui_Impl_OpenGL3.NewFrame*"></a>
<h4 id="ImGuiScene_ImGui_Impl_OpenGL3_NewFrame" data-uid="ImGuiScene.ImGui_Impl_OpenGL3.NewFrame">NewFrame()</h4>
@ -168,10 +168,10 @@ State backup IS done for this renderer, because SDL does not play nicely when us
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_OpenGL3_RenderDrawData_ImGuiNET_ImDrawDataPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_OpenGL3.RenderDrawData(ImGuiNET.ImDrawDataPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_OpenGL3_RenderDrawData_ImGuiNET_ImDrawDataPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_OpenGL3.RenderDrawData(ImGuiNET.ImDrawDataPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_OpenGL3.cs/#L34">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_OpenGL3.cs/#L34">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_OpenGL3_RenderDrawData_" data-uid="ImGuiScene.ImGui_Impl_OpenGL3.RenderDrawData*"></a>
<h4 id="ImGuiScene_ImGui_Impl_OpenGL3_RenderDrawData_ImGuiNET_ImDrawDataPtr_" data-uid="ImGuiScene.ImGui_Impl_OpenGL3.RenderDrawData(ImGuiNET.ImDrawDataPtr)">RenderDrawData(ImDrawDataPtr)</h4>
@ -200,10 +200,10 @@ State backup IS done for this renderer, because SDL does not play nicely when us
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_OpenGL3_Shutdown.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_OpenGL3.Shutdown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_OpenGL3_Shutdown.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_OpenGL3.Shutdown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_OpenGL3.cs/#L193">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_OpenGL3.cs/#L193">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_OpenGL3_Shutdown_" data-uid="ImGuiScene.ImGui_Impl_OpenGL3.Shutdown*"></a>
<h4 id="ImGuiScene_ImGui_Impl_OpenGL3_Shutdown" data-uid="ImGuiScene.ImGui_Impl_OpenGL3.Shutdown">Shutdown()</h4>
@ -225,10 +225,10 @@ State backup IS done for this renderer, because SDL does not play nicely when us
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_OpenGL3.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_OpenGL3%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_OpenGL3.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_OpenGL3%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_OpenGL3.cs/#L18" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Renderers/ImGui_Impl_OpenGL3.cs/#L18" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -121,10 +121,10 @@ A near-direct port of <a href="https://github.com/ocornut/imgui/blob/master/exam
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_SDL__ctor_System_IntPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_SDL.%23ctor(System.IntPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_SDL__ctor_System_IntPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_SDL.%23ctor(System.IntPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/ImGui_Impl_SDL.cs/#L30">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/ImGui_Impl_SDL.cs/#L30">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_SDL__ctor_" data-uid="ImGuiScene.ImGui_Impl_SDL.#ctor*"></a>
<h4 id="ImGuiScene_ImGui_Impl_SDL__ctor_System_IntPtr_" data-uid="ImGuiScene.ImGui_Impl_SDL.#ctor(System.IntPtr)">ImGui_Impl_SDL(IntPtr)</h4>
@ -155,10 +155,10 @@ A near-direct port of <a href="https://github.com/ocornut/imgui/blob/master/exam
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_SDL_Dispose.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_SDL.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_SDL_Dispose.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_SDL.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/ImGui_Impl_SDL.cs/#L330">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/ImGui_Impl_SDL.cs/#L330">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_SDL_Dispose_" data-uid="ImGuiScene.ImGui_Impl_SDL.Dispose*"></a>
<h4 id="ImGuiScene_ImGui_Impl_SDL_Dispose" data-uid="ImGuiScene.ImGui_Impl_SDL.Dispose">Dispose()</h4>
@ -170,10 +170,10 @@ A near-direct port of <a href="https://github.com/ocornut/imgui/blob/master/exam
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_SDL_Dispose_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_SDL.Dispose(System.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_SDL_Dispose_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_SDL.Dispose(System.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/ImGui_Impl_SDL.cs/#L272">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/ImGui_Impl_SDL.cs/#L272">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_SDL_Dispose_" data-uid="ImGuiScene.ImGui_Impl_SDL.Dispose*"></a>
<h4 id="ImGuiScene_ImGui_Impl_SDL_Dispose_System_Boolean_" data-uid="ImGuiScene.ImGui_Impl_SDL.Dispose(System.Boolean)">Dispose(Boolean)</h4>
@ -202,10 +202,10 @@ A near-direct port of <a href="https://github.com/ocornut/imgui/blob/master/exam
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_SDL_Finalize.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_SDL.Finalize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_SDL_Finalize.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_SDL.Finalize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/ImGui_Impl_SDL.cs/#L323">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/ImGui_Impl_SDL.cs/#L323">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_SDL_Finalize_" data-uid="ImGuiScene.ImGui_Impl_SDL.Finalize*"></a>
<h4 id="ImGuiScene_ImGui_Impl_SDL_Finalize" data-uid="ImGuiScene.ImGui_Impl_SDL.Finalize">Finalize()</h4>
@ -217,10 +217,10 @@ A near-direct port of <a href="https://github.com/ocornut/imgui/blob/master/exam
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_SDL_NewFrame_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_SDL.NewFrame(System.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_SDL_NewFrame_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_SDL.NewFrame(System.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/ImGui_Impl_SDL.cs/#L95">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/ImGui_Impl_SDL.cs/#L95">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_SDL_NewFrame_" data-uid="ImGuiScene.ImGui_Impl_SDL.NewFrame*"></a>
<h4 id="ImGuiScene_ImGui_Impl_SDL_NewFrame_System_Int32_System_Int32_" data-uid="ImGuiScene.ImGui_Impl_SDL.NewFrame(System.Int32,System.Int32)">NewFrame(Int32, Int32)</h4>
@ -254,10 +254,10 @@ A near-direct port of <a href="https://github.com/ocornut/imgui/blob/master/exam
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_SDL_SetIniPath_System_String_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_SDL.SetIniPath(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_SDL_SetIniPath_System_String_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_SDL.SetIniPath(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/ImGui_Impl_SDL.cs/#L120">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/ImGui_Impl_SDL.cs/#L120">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Impl_SDL_SetIniPath_" data-uid="ImGuiScene.ImGui_Impl_SDL.SetIniPath*"></a>
<h4 id="ImGuiScene_ImGui_Impl_SDL_SetIniPath_System_String_" data-uid="ImGuiScene.ImGui_Impl_SDL.SetIniPath(System.String)">SetIniPath(String)</h4>
@ -299,10 +299,10 @@ A near-direct port of <a href="https://github.com/ocornut/imgui/blob/master/exam
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Impl_SDL.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_SDL%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Impl_SDL.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Impl_SDL%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/ImGui_Impl_SDL.cs/#L13" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/ImGui_Impl_SDL.cs/#L13" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -119,10 +119,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Input_Impl_Direct__ctor_System_IntPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Input_Impl_Direct.%23ctor(System.IntPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Input_Impl_Direct__ctor_System_IntPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Input_Impl_Direct.%23ctor(System.IntPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/ImGui_Input_Impl_Direct.cs/#L25">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/ImGui_Input_Impl_Direct.cs/#L25">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Input_Impl_Direct__ctor_" data-uid="ImGuiScene.ImGui_Input_Impl_Direct.#ctor*"></a>
<h4 id="ImGuiScene_ImGui_Input_Impl_Direct__ctor_System_IntPtr_" data-uid="ImGuiScene.ImGui_Input_Impl_Direct.#ctor(System.IntPtr)">ImGui_Input_Impl_Direct(IntPtr)</h4>
@ -153,10 +153,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Input_Impl_Direct_Dispose.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Input_Impl_Direct.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Input_Impl_Direct_Dispose.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Input_Impl_Direct.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/ImGui_Input_Impl_Direct.cs/#L415">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/ImGui_Input_Impl_Direct.cs/#L415">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Input_Impl_Direct_Dispose_" data-uid="ImGuiScene.ImGui_Input_Impl_Direct.Dispose*"></a>
<h4 id="ImGuiScene_ImGui_Input_Impl_Direct_Dispose" data-uid="ImGuiScene.ImGui_Input_Impl_Direct.Dispose">Dispose()</h4>
@ -168,10 +168,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Input_Impl_Direct_Dispose_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Input_Impl_Direct.Dispose(System.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Input_Impl_Direct_Dispose_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Input_Impl_Direct.Dispose(System.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/ImGui_Input_Impl_Direct.cs/#L363">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/ImGui_Input_Impl_Direct.cs/#L363">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Input_Impl_Direct_Dispose_" data-uid="ImGuiScene.ImGui_Input_Impl_Direct.Dispose*"></a>
<h4 id="ImGuiScene_ImGui_Input_Impl_Direct_Dispose_System_Boolean_" data-uid="ImGuiScene.ImGui_Input_Impl_Direct.Dispose(System.Boolean)">Dispose(Boolean)</h4>
@ -200,10 +200,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Input_Impl_Direct_Finalize.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Input_Impl_Direct.Finalize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Input_Impl_Direct_Finalize.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Input_Impl_Direct.Finalize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/ImGui_Input_Impl_Direct.cs/#L408">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/ImGui_Input_Impl_Direct.cs/#L408">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Input_Impl_Direct_Finalize_" data-uid="ImGuiScene.ImGui_Input_Impl_Direct.Finalize*"></a>
<h4 id="ImGuiScene_ImGui_Input_Impl_Direct_Finalize" data-uid="ImGuiScene.ImGui_Input_Impl_Direct.Finalize">Finalize()</h4>
@ -215,10 +215,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Input_Impl_Direct_IsImGuiCursor_System_IntPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Input_Impl_Direct.IsImGuiCursor(System.IntPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Input_Impl_Direct_IsImGuiCursor_System_IntPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Input_Impl_Direct.IsImGuiCursor(System.IntPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/ImGui_Input_Impl_Direct.cs/#L81">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/ImGui_Input_Impl_Direct.cs/#L81">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Input_Impl_Direct_IsImGuiCursor_" data-uid="ImGuiScene.ImGui_Input_Impl_Direct.IsImGuiCursor*"></a>
<h4 id="ImGuiScene_ImGui_Input_Impl_Direct_IsImGuiCursor_System_IntPtr_" data-uid="ImGuiScene.ImGui_Input_Impl_Direct.IsImGuiCursor(System.IntPtr)">IsImGuiCursor(IntPtr)</h4>
@ -262,10 +262,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Input_Impl_Direct_NewFrame_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Input_Impl_Direct.NewFrame(System.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Input_Impl_Direct_NewFrame_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Input_Impl_Direct.NewFrame(System.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/ImGui_Input_Impl_Direct.cs/#L86">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/ImGui_Input_Impl_Direct.cs/#L86">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Input_Impl_Direct_NewFrame_" data-uid="ImGuiScene.ImGui_Input_Impl_Direct.NewFrame*"></a>
<h4 id="ImGuiScene_ImGui_Input_Impl_Direct_NewFrame_System_Int32_System_Int32_" data-uid="ImGuiScene.ImGui_Input_Impl_Direct.NewFrame(System.Int32,System.Int32)">NewFrame(Int32, Int32)</h4>
@ -299,10 +299,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Input_Impl_Direct_SetIniPath_System_String_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Input_Impl_Direct.SetIniPath(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Input_Impl_Direct_SetIniPath_System_String_.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Input_Impl_Direct.SetIniPath(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/ImGui_Input_Impl_Direct.cs/#L148">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/ImGui_Input_Impl_Direct.cs/#L148">View Source</a>
</span>
<a id="ImGuiScene_ImGui_Input_Impl_Direct_SetIniPath_" data-uid="ImGuiScene.ImGui_Input_Impl_Direct.SetIniPath*"></a>
<h4 id="ImGuiScene_ImGui_Input_Impl_Direct_SetIniPath_System_String_" data-uid="ImGuiScene.ImGui_Input_Impl_Direct.SetIniPath(System.String)">SetIniPath(String)</h4>
@ -344,10 +344,10 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_ImGui_Input_Impl_Direct.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Input_Impl_Direct%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_ImGui_Input_Impl_Direct.md&amp;value=---%0Auid%3A%20ImGuiScene.ImGui_Input_Impl_Direct%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/ImGui_Impl/Input/ImGui_Input_Impl_Direct.cs/#L11" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/ImGui_Impl/Input/ImGui_Input_Impl_Direct.cs/#L11" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -89,10 +89,10 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RawDX11Scene_BuildUIDelegate.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.BuildUIDelegate%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene_BuildUIDelegate.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.BuildUIDelegate%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/RawDX11Scene.cs/#L28" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L28" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -0,0 +1,125 @@
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Delegate RawDX11Scene.NewInputFrameDelegate
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Delegate RawDX11Scene.NewInputFrameDelegate
">
<meta name="generator" content="docfx 2.48.1.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="">
<meta property="docfx:tocrel" content="toc.html">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="ImGuiScene.RawDX11Scene.NewInputFrameDelegate">
<h1 id="ImGuiScene_RawDX11Scene_NewInputFrameDelegate" data-uid="ImGuiScene.RawDX11Scene.NewInputFrameDelegate" class="text-break">Delegate RawDX11Scene.NewInputFrameDelegate
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>
<h6><strong>Namespace</strong>: <a class="xref" href="ImGuiScene.html">ImGuiScene</a></h6>
<h6><strong>Assembly</strong>: ImGuiScene.dll</h6>
<h5 id="ImGuiScene_RawDX11Scene_NewInputFrameDelegate_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public delegate void NewInputFrameDelegate();</code></pre>
</div>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene_NewInputFrameDelegate.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.NewInputFrameDelegate%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L29" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>

View file

@ -0,0 +1,125 @@
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Delegate RawDX11Scene.NewRenderFrameDelegate
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Delegate RawDX11Scene.NewRenderFrameDelegate
">
<meta name="generator" content="docfx 2.48.1.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="">
<meta property="docfx:tocrel" content="toc.html">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="ImGuiScene.RawDX11Scene.NewRenderFrameDelegate">
<h1 id="ImGuiScene_RawDX11Scene_NewRenderFrameDelegate" data-uid="ImGuiScene.RawDX11Scene.NewRenderFrameDelegate" class="text-break">Delegate RawDX11Scene.NewRenderFrameDelegate
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>
<h6><strong>Namespace</strong>: <a class="xref" href="ImGuiScene.html">ImGuiScene</a></h6>
<h6><strong>Assembly</strong>: ImGuiScene.dll</h6>
<h5 id="ImGuiScene_RawDX11Scene_NewRenderFrameDelegate_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public delegate void NewRenderFrameDelegate();</code></pre>
</div>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene_NewRenderFrameDelegate.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.NewRenderFrameDelegate%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L30" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>

View file

@ -118,10 +118,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RawDX11Scene__ctor_System_IntPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.%23ctor(System.IntPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene__ctor_System_IntPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.%23ctor(System.IntPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/RawDX11Scene.cs/#L46">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L51">View Source</a>
</span>
<a id="ImGuiScene_RawDX11Scene__ctor_" data-uid="ImGuiScene.RawDX11Scene.#ctor*"></a>
<h4 id="ImGuiScene_RawDX11Scene__ctor_System_IntPtr_" data-uid="ImGuiScene.RawDX11Scene.#ctor(System.IntPtr)">RawDX11Scene(IntPtr)</h4>
@ -150,10 +150,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RawDX11Scene__ctor_System_IntPtr_System_IntPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.%23ctor(System.IntPtr%2CSystem.IntPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene__ctor_System_IntPtr_System_IntPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.%23ctor(System.IntPtr%2CSystem.IntPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/RawDX11Scene.cs/#L62">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L67">View Source</a>
</span>
<a id="ImGuiScene_RawDX11Scene__ctor_" data-uid="ImGuiScene.RawDX11Scene.#ctor*"></a>
<h4 id="ImGuiScene_RawDX11Scene__ctor_System_IntPtr_System_IntPtr_" data-uid="ImGuiScene.RawDX11Scene.#ctor(System.IntPtr,System.IntPtr)">RawDX11Scene(IntPtr, IntPtr)</h4>
@ -189,10 +189,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RawDX11Scene_OnBuildUI.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.OnBuildUI%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene_OnBuildUI.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.OnBuildUI%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/RawDX11Scene.cs/#L33">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L35">View Source</a>
</span>
<h4 id="ImGuiScene_RawDX11Scene_OnBuildUI" data-uid="ImGuiScene.RawDX11Scene.OnBuildUI">OnBuildUI</h4>
<div class="markdown level1 summary"><p>User methods invoked every ImGui frame to construct custom UIs.</p>
@ -217,14 +217,72 @@
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene_OnNewInputFrame.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.OnNewInputFrame%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L37">View Source</a>
</span>
<h4 id="ImGuiScene_RawDX11Scene_OnNewInputFrame" data-uid="ImGuiScene.RawDX11Scene.OnNewInputFrame">OnNewInputFrame</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public RawDX11Scene.NewInputFrameDelegate OnNewInputFrame</code></pre>
</div>
<h5 class="fieldValue">Field Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="ImGuiScene.RawDX11Scene.NewInputFrameDelegate.html">RawDX11Scene.NewInputFrameDelegate</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene_OnNewRenderFrame.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.OnNewRenderFrame%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L38">View Source</a>
</span>
<h4 id="ImGuiScene_RawDX11Scene_OnNewRenderFrame" data-uid="ImGuiScene.RawDX11Scene.OnNewRenderFrame">OnNewRenderFrame</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public RawDX11Scene.NewRenderFrameDelegate OnNewRenderFrame</code></pre>
</div>
<h5 class="fieldValue">Field Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="ImGuiScene.RawDX11Scene.NewRenderFrameDelegate.html">RawDX11Scene.NewRenderFrameDelegate</a></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RawDX11Scene_ImGuiIniPath.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.ImGuiIniPath%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene_ImGuiIniPath.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.ImGuiIniPath%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/RawDX11Scene.cs/#L36">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L41">View Source</a>
</span>
<a id="ImGuiScene_RawDX11Scene_ImGuiIniPath_" data-uid="ImGuiScene.RawDX11Scene.ImGuiIniPath*"></a>
<h4 id="ImGuiScene_RawDX11Scene_ImGuiIniPath" data-uid="ImGuiScene.RawDX11Scene.ImGuiIniPath">ImGuiIniPath</h4>
@ -253,10 +311,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RawDX11Scene_CaptureScreenshot.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.CaptureScreenshot%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene_CaptureScreenshot.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.CaptureScreenshot%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/RawDX11Scene.cs/#L199">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L206">View Source</a>
</span>
<a id="ImGuiScene_RawDX11Scene_CaptureScreenshot_" data-uid="ImGuiScene.RawDX11Scene.CaptureScreenshot*"></a>
<h4 id="ImGuiScene_RawDX11Scene_CaptureScreenshot" data-uid="ImGuiScene.RawDX11Scene.CaptureScreenshot">CaptureScreenshot()</h4>
@ -283,10 +341,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RawDX11Scene_Dispose.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene_Dispose.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/RawDX11Scene.cs/#L285">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L292">View Source</a>
</span>
<a id="ImGuiScene_RawDX11Scene_Dispose_" data-uid="ImGuiScene.RawDX11Scene.Dispose*"></a>
<h4 id="ImGuiScene_RawDX11Scene_Dispose" data-uid="ImGuiScene.RawDX11Scene.Dispose">Dispose()</h4>
@ -298,10 +356,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RawDX11Scene_Finalize.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.Finalize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene_Finalize.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.Finalize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/RawDX11Scene.cs/#L278">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L285">View Source</a>
</span>
<a id="ImGuiScene_RawDX11Scene_Finalize_" data-uid="ImGuiScene.RawDX11Scene.Finalize*"></a>
<h4 id="ImGuiScene_RawDX11Scene_Finalize" data-uid="ImGuiScene.RawDX11Scene.Finalize">Finalize()</h4>
@ -313,10 +371,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RawDX11Scene_IsImGuiCursor_System_IntPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.IsImGuiCursor(System.IntPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene_IsImGuiCursor_System_IntPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.IsImGuiCursor(System.IntPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/RawDX11Scene.cs/#L133">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L140">View Source</a>
</span>
<a id="ImGuiScene_RawDX11Scene_IsImGuiCursor_" data-uid="ImGuiScene.RawDX11Scene.IsImGuiCursor*"></a>
<h4 id="ImGuiScene_RawDX11Scene_IsImGuiCursor_System_IntPtr_" data-uid="ImGuiScene.RawDX11Scene.IsImGuiCursor(System.IntPtr)">IsImGuiCursor(IntPtr)</h4>
@ -360,10 +418,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RawDX11Scene_LoadImage_System_Byte___.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.LoadImage(System.Byte%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene_LoadImage_System_Byte___.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.LoadImage(System.Byte%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/RawDX11Scene.cs/#L149">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L156">View Source</a>
</span>
<a id="ImGuiScene_RawDX11Scene_LoadImage_" data-uid="ImGuiScene.RawDX11Scene.LoadImage*"></a>
<h4 id="ImGuiScene_RawDX11Scene_LoadImage_System_Byte___" data-uid="ImGuiScene.RawDX11Scene.LoadImage(System.Byte[])">LoadImage(Byte[])</h4>
@ -407,10 +465,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RawDX11Scene_LoadImage_System_String_.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.LoadImage(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene_LoadImage_System_String_.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.LoadImage(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/RawDX11Scene.cs/#L138">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L145">View Source</a>
</span>
<a id="ImGuiScene_RawDX11Scene_LoadImage_" data-uid="ImGuiScene.RawDX11Scene.LoadImage*"></a>
<h4 id="ImGuiScene_RawDX11Scene_LoadImage_System_String_" data-uid="ImGuiScene.RawDX11Scene.LoadImage(System.String)">LoadImage(String)</h4>
@ -454,10 +512,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RawDX11Scene_OnPostResize_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.OnPostResize(System.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene_OnPostResize_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.OnPostResize(System.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/RawDX11Scene.cs/#L122">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L129">View Source</a>
</span>
<a id="ImGuiScene_RawDX11Scene_OnPostResize_" data-uid="ImGuiScene.RawDX11Scene.OnPostResize*"></a>
<h4 id="ImGuiScene_RawDX11Scene_OnPostResize_System_Int32_System_Int32_" data-uid="ImGuiScene.RawDX11Scene.OnPostResize(System.Int32,System.Int32)">OnPostResize(Int32, Int32)</h4>
@ -491,10 +549,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RawDX11Scene_OnPreResize.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.OnPreResize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene_OnPreResize.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.OnPreResize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/RawDX11Scene.cs/#L114">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L121">View Source</a>
</span>
<a id="ImGuiScene_RawDX11Scene_OnPreResize_" data-uid="ImGuiScene.RawDX11Scene.OnPreResize*"></a>
<h4 id="ImGuiScene_RawDX11Scene_OnPreResize" data-uid="ImGuiScene.RawDX11Scene.OnPreResize">OnPreResize()</h4>
@ -506,10 +564,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RawDX11Scene_Render.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.Render%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene_Render.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene.Render%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/RawDX11Scene.cs/#L98">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L103">View Source</a>
</span>
<a id="ImGuiScene_RawDX11Scene_Render_" data-uid="ImGuiScene.RawDX11Scene.Render*"></a>
<h4 id="ImGuiScene_RawDX11Scene_Render" data-uid="ImGuiScene.RawDX11Scene.Render">Render()</h4>
@ -531,10 +589,10 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RawDX11Scene.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RawDX11Scene.md&amp;value=---%0Auid%3A%20ImGuiScene.RawDX11Scene%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/RawDX11Scene.cs/#L15" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/RawDX11Scene.cs/#L15" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -113,10 +113,10 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RendererFactory_RendererBackend.md&amp;value=---%0Auid%3A%20ImGuiScene.RendererFactory.RendererBackend%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RendererFactory_RendererBackend.md&amp;value=---%0Auid%3A%20ImGuiScene.RendererFactory.RendererBackend%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/RendererFactory.cs/#L10" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/RendererFactory.cs/#L10" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -115,10 +115,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RendererFactory_CreateRenderer_ImGuiScene_RendererFactory_RendererBackend_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.RendererFactory.CreateRenderer(ImGuiScene.RendererFactory.RendererBackend%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RendererFactory_CreateRenderer_ImGuiScene_RendererFactory_RendererBackend_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.RendererFactory.CreateRenderer(ImGuiScene.RendererFactory.RendererBackend%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/RendererFactory.cs/#L22">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/RendererFactory.cs/#L22">View Source</a>
</span>
<a id="ImGuiScene_RendererFactory_CreateRenderer_" data-uid="ImGuiScene.RendererFactory.CreateRenderer*"></a>
<h4 id="ImGuiScene_RendererFactory_CreateRenderer_ImGuiScene_RendererFactory_RendererBackend_System_Boolean_" data-uid="ImGuiScene.RendererFactory.CreateRenderer(ImGuiScene.RendererFactory.RendererBackend,System.Boolean)">CreateRenderer(RendererFactory.RendererBackend, Boolean)</h4>
@ -176,10 +176,10 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_RendererFactory.md&amp;value=---%0Auid%3A%20ImGuiScene.RendererFactory%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_RendererFactory.md&amp;value=---%0Auid%3A%20ImGuiScene.RendererFactory%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/RendererFactory.cs/#L8" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/RendererFactory.cs/#L8" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -147,10 +147,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SDLWindowGL_InitForRenderer_ImGuiScene_IRenderer_.md&amp;value=---%0Auid%3A%20ImGuiScene.SDLWindowGL.InitForRenderer(ImGuiScene.IRenderer)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SDLWindowGL_InitForRenderer_ImGuiScene_IRenderer_.md&amp;value=---%0Auid%3A%20ImGuiScene.SDLWindowGL.InitForRenderer(ImGuiScene.IRenderer)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/SDLWindowGL.cs/#L19">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/SDLWindowGL.cs/#L19">View Source</a>
</span>
<a id="ImGuiScene_SDLWindowGL_InitForRenderer_" data-uid="ImGuiScene.SDLWindowGL.InitForRenderer*"></a>
<h4 id="ImGuiScene_SDLWindowGL_InitForRenderer_ImGuiScene_IRenderer_" data-uid="ImGuiScene.SDLWindowGL.InitForRenderer(ImGuiScene.IRenderer)">InitForRenderer(IRenderer)</h4>
@ -183,10 +183,10 @@
<div><a class="xref" href="ImGuiScene.SimpleSDLWindow.html#ImGuiScene_SimpleSDLWindow_InitForRenderer_ImGuiScene_IRenderer_">SimpleSDLWindow.InitForRenderer(IRenderer)</a></div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SDLWindowGL_WindowCreationFlags_ImGuiScene_WindowCreateInfo_.md&amp;value=---%0Auid%3A%20ImGuiScene.SDLWindowGL.WindowCreationFlags(ImGuiScene.WindowCreateInfo)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SDLWindowGL_WindowCreationFlags_ImGuiScene_WindowCreateInfo_.md&amp;value=---%0Auid%3A%20ImGuiScene.SDLWindowGL.WindowCreationFlags(ImGuiScene.WindowCreateInfo)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/SDLWindowGL.cs/#L52">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/SDLWindowGL.cs/#L52">View Source</a>
</span>
<a id="ImGuiScene_SDLWindowGL_WindowCreationFlags_" data-uid="ImGuiScene.SDLWindowGL.WindowCreationFlags*"></a>
<h4 id="ImGuiScene_SDLWindowGL_WindowCreationFlags_ImGuiScene_WindowCreateInfo_" data-uid="ImGuiScene.SDLWindowGL.WindowCreationFlags(ImGuiScene.WindowCreateInfo)">WindowCreationFlags(WindowCreateInfo)</h4>
@ -245,10 +245,10 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SDLWindowGL.md&amp;value=---%0Auid%3A%20ImGuiScene.SDLWindowGL%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SDLWindowGL.md&amp;value=---%0Auid%3A%20ImGuiScene.SDLWindowGL%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/SDLWindowGL.cs/#L9" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/SDLWindowGL.cs/#L9" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -120,10 +120,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleD3D_ClearColor.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.ClearColor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleD3D_ClearColor.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.ClearColor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleD3D.cs/#L26">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleD3D.cs/#L26">View Source</a>
</span>
<a id="ImGuiScene_SimpleD3D_ClearColor_" data-uid="ImGuiScene.SimpleD3D.ClearColor*"></a>
<h4 id="ImGuiScene_SimpleD3D_ClearColor" data-uid="ImGuiScene.SimpleD3D.ClearColor">ClearColor</h4>
@ -151,10 +151,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleD3D_Debuggable.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.Debuggable%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleD3D_Debuggable.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.Debuggable%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleD3D.cs/#L54">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleD3D.cs/#L54">View Source</a>
</span>
<a id="ImGuiScene_SimpleD3D_Debuggable_" data-uid="ImGuiScene.SimpleD3D.Debuggable*"></a>
<h4 id="ImGuiScene_SimpleD3D_Debuggable" data-uid="ImGuiScene.SimpleD3D.Debuggable">Debuggable</h4>
@ -182,10 +182,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleD3D_Type.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.Type%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleD3D_Type.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.Type%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleD3D.cs/#L20">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleD3D.cs/#L20">View Source</a>
</span>
<a id="ImGuiScene_SimpleD3D_Type_" data-uid="ImGuiScene.SimpleD3D.Type*"></a>
<h4 id="ImGuiScene_SimpleD3D_Type" data-uid="ImGuiScene.SimpleD3D.Type">Type</h4>
@ -213,10 +213,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleD3D_Vsync.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.Vsync%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleD3D_Vsync.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.Vsync%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleD3D.cs/#L42">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleD3D.cs/#L42">View Source</a>
</span>
<a id="ImGuiScene_SimpleD3D_Vsync_" data-uid="ImGuiScene.SimpleD3D.Vsync*"></a>
<h4 id="ImGuiScene_SimpleD3D_Vsync" data-uid="ImGuiScene.SimpleD3D.Vsync">Vsync</h4>
@ -246,10 +246,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleD3D_AttachToWindow_ImGuiScene_SimpleSDLWindow_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.AttachToWindow(ImGuiScene.SimpleSDLWindow)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleD3D_AttachToWindow_ImGuiScene_SimpleSDLWindow_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.AttachToWindow(ImGuiScene.SimpleSDLWindow)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleD3D.cs/#L71">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleD3D.cs/#L71">View Source</a>
</span>
<a id="ImGuiScene_SimpleD3D_AttachToWindow_" data-uid="ImGuiScene.SimpleD3D.AttachToWindow*"></a>
<h4 id="ImGuiScene_SimpleD3D_AttachToWindow_ImGuiScene_SimpleSDLWindow_" data-uid="ImGuiScene.SimpleD3D.AttachToWindow(ImGuiScene.SimpleSDLWindow)">AttachToWindow(SimpleSDLWindow)</h4>
@ -280,10 +280,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleD3D_Clear.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.Clear%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleD3D_Clear.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.Clear%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleD3D.cs/#L121">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleD3D.cs/#L121">View Source</a>
</span>
<a id="ImGuiScene_SimpleD3D_Clear_" data-uid="ImGuiScene.SimpleD3D.Clear*"></a>
<h4 id="ImGuiScene_SimpleD3D_Clear" data-uid="ImGuiScene.SimpleD3D.Clear">Clear()</h4>
@ -296,10 +296,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleD3D_CreateTexture_System_Void__System_Int32_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.CreateTexture(System.Void*%2CSystem.Int32%2CSystem.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleD3D_CreateTexture_System_Void__System_Int32_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.CreateTexture(System.Void*%2CSystem.Int32%2CSystem.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleD3D.cs/#L143">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleD3D.cs/#L143">View Source</a>
</span>
<a id="ImGuiScene_SimpleD3D_CreateTexture_" data-uid="ImGuiScene.SimpleD3D.CreateTexture*"></a>
<h4 id="ImGuiScene_SimpleD3D_CreateTexture_System_Void__System_Int32_System_Int32_System_Int32_" data-uid="ImGuiScene.SimpleD3D.CreateTexture(System.Void*,System.Int32,System.Int32,System.Int32)">CreateTexture(Void*, Int32, Int32, Int32)</h4>
@ -367,10 +367,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleD3D_Dispose.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleD3D_Dispose.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleD3D.cs/#L235">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleD3D.cs/#L235">View Source</a>
</span>
<a id="ImGuiScene_SimpleD3D_Dispose_" data-uid="ImGuiScene.SimpleD3D.Dispose*"></a>
<h4 id="ImGuiScene_SimpleD3D_Dispose" data-uid="ImGuiScene.SimpleD3D.Dispose">Dispose()</h4>
@ -382,10 +382,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleD3D_Dispose_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.Dispose(System.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleD3D_Dispose_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.Dispose(System.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleD3D.cs/#L201">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleD3D.cs/#L201">View Source</a>
</span>
<a id="ImGuiScene_SimpleD3D_Dispose_" data-uid="ImGuiScene.SimpleD3D.Dispose*"></a>
<h4 id="ImGuiScene_SimpleD3D_Dispose_System_Boolean_" data-uid="ImGuiScene.SimpleD3D.Dispose(System.Boolean)">Dispose(Boolean)</h4>
@ -414,10 +414,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleD3D_Finalize.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.Finalize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleD3D_Finalize.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.Finalize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleD3D.cs/#L230">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleD3D.cs/#L230">View Source</a>
</span>
<a id="ImGuiScene_SimpleD3D_Finalize_" data-uid="ImGuiScene.SimpleD3D.Finalize*"></a>
<h4 id="ImGuiScene_SimpleD3D_Finalize" data-uid="ImGuiScene.SimpleD3D.Finalize">Finalize()</h4>
@ -429,10 +429,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleD3D_ImGui_Init.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.ImGui_Init%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleD3D_ImGui_Init.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.ImGui_Init%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleD3D.cs/#L177">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleD3D.cs/#L177">View Source</a>
</span>
<a id="ImGuiScene_SimpleD3D_ImGui_Init_" data-uid="ImGuiScene.SimpleD3D.ImGui_Init*"></a>
<h4 id="ImGuiScene_SimpleD3D_ImGui_Init" data-uid="ImGuiScene.SimpleD3D.ImGui_Init">ImGui_Init()</h4>
@ -444,10 +444,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleD3D_ImGui_NewFrame.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.ImGui_NewFrame%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleD3D_ImGui_NewFrame.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.ImGui_NewFrame%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleD3D.cs/#L187">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleD3D.cs/#L187">View Source</a>
</span>
<a id="ImGuiScene_SimpleD3D_ImGui_NewFrame_" data-uid="ImGuiScene.SimpleD3D.ImGui_NewFrame*"></a>
<h4 id="ImGuiScene_SimpleD3D_ImGui_NewFrame" data-uid="ImGuiScene.SimpleD3D.ImGui_NewFrame">ImGui_NewFrame()</h4>
@ -459,10 +459,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleD3D_ImGui_RenderDrawData_ImGuiNET_ImDrawDataPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.ImGui_RenderDrawData(ImGuiNET.ImDrawDataPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleD3D_ImGui_RenderDrawData_ImGuiNET_ImDrawDataPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.ImGui_RenderDrawData(ImGuiNET.ImDrawDataPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleD3D.cs/#L192">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleD3D.cs/#L192">View Source</a>
</span>
<a id="ImGuiScene_SimpleD3D_ImGui_RenderDrawData_" data-uid="ImGuiScene.SimpleD3D.ImGui_RenderDrawData*"></a>
<h4 id="ImGuiScene_SimpleD3D_ImGui_RenderDrawData_ImGuiNET_ImDrawDataPtr_" data-uid="ImGuiScene.SimpleD3D.ImGui_RenderDrawData(ImGuiNET.ImDrawDataPtr)">ImGui_RenderDrawData(ImDrawDataPtr)</h4>
@ -491,10 +491,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleD3D_ImGui_Shutdown.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.ImGui_Shutdown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleD3D_ImGui_Shutdown.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.ImGui_Shutdown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleD3D.cs/#L182">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleD3D.cs/#L182">View Source</a>
</span>
<a id="ImGuiScene_SimpleD3D_ImGui_Shutdown_" data-uid="ImGuiScene.SimpleD3D.ImGui_Shutdown*"></a>
<h4 id="ImGuiScene_SimpleD3D_ImGui_Shutdown" data-uid="ImGuiScene.SimpleD3D.ImGui_Shutdown">ImGui_Shutdown()</h4>
@ -506,10 +506,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleD3D_Present.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.Present%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleD3D_Present.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D.Present%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleD3D.cs/#L129">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleD3D.cs/#L129">View Source</a>
</span>
<a id="ImGuiScene_SimpleD3D_Present_" data-uid="ImGuiScene.SimpleD3D.Present*"></a>
<h4 id="ImGuiScene_SimpleD3D_Present" data-uid="ImGuiScene.SimpleD3D.Present">Present()</h4>
@ -535,10 +535,10 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleD3D.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleD3D.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleD3D%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleD3D.cs/#L15" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleD3D.cs/#L15" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -89,10 +89,10 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_BuildUIDelegate.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.BuildUIDelegate%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_BuildUIDelegate.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.BuildUIDelegate%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L70" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L70" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -121,10 +121,10 @@ Currently this always creates a new window rather than take ownership of an exis
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene__ctor_ImGuiScene_RendererFactory_RendererBackend_ImGuiScene_WindowCreateInfo_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.%23ctor(ImGuiScene.RendererFactory.RendererBackend%2CImGuiScene.WindowCreateInfo%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene__ctor_ImGuiScene_RendererFactory_RendererBackend_ImGuiScene_WindowCreateInfo_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.%23ctor(ImGuiScene.RendererFactory.RendererBackend%2CImGuiScene.WindowCreateInfo%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L160">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L160">View Source</a>
</span>
<a id="ImGuiScene_SimpleImGuiScene__ctor_" data-uid="ImGuiScene.SimpleImGuiScene.#ctor*"></a>
<h4 id="ImGuiScene_SimpleImGuiScene__ctor_ImGuiScene_RendererFactory_RendererBackend_ImGuiScene_WindowCreateInfo_System_Boolean_" data-uid="ImGuiScene.SimpleImGuiScene.#ctor(ImGuiScene.RendererFactory.RendererBackend,ImGuiScene.WindowCreateInfo,System.Boolean)">SimpleImGuiScene(RendererFactory.RendererBackend, WindowCreateInfo, Boolean)</h4>
@ -168,10 +168,10 @@ Currently this always creates a new window rather than take ownership of an exis
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_OnBuildUI.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.OnBuildUI%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_OnBuildUI.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.OnBuildUI%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L75">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L75">View Source</a>
</span>
<h4 id="ImGuiScene_SimpleImGuiScene_OnBuildUI" data-uid="ImGuiScene.SimpleImGuiScene.OnBuildUI">OnBuildUI</h4>
<div class="markdown level1 summary"><p>User methods invoked every ImGui frame to construct custom UIs.</p>
@ -200,10 +200,10 @@ Currently this always creates a new window rather than take ownership of an exis
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_FramerateLimit.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.FramerateLimit%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_FramerateLimit.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.FramerateLimit%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L38">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L38">View Source</a>
</span>
<a id="ImGuiScene_SimpleImGuiScene_FramerateLimit_" data-uid="ImGuiScene.SimpleImGuiScene.FramerateLimit*"></a>
<h4 id="ImGuiScene_SimpleImGuiScene_FramerateLimit" data-uid="ImGuiScene.SimpleImGuiScene.FramerateLimit">FramerateLimit</h4>
@ -232,10 +232,10 @@ The default behavior is <a class="xref" href="ImGuiScene.FramerateLimit.LimitTyp
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_ImGuiIniPath.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.ImGuiIniPath%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_ImGuiIniPath.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.ImGuiIniPath%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L60">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L60">View Source</a>
</span>
<a id="ImGuiScene_SimpleImGuiScene_ImGuiIniPath_" data-uid="ImGuiScene.SimpleImGuiScene.ImGuiIniPath*"></a>
<h4 id="ImGuiScene_SimpleImGuiScene_ImGuiIniPath" data-uid="ImGuiScene.SimpleImGuiScene.ImGuiIniPath">ImGuiIniPath</h4>
@ -262,10 +262,10 @@ The default behavior is <a class="xref" href="ImGuiScene.FramerateLimit.LimitTyp
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_OnSDLEvent.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.OnSDLEvent%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_OnSDLEvent.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.OnSDLEvent%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L112">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L112">View Source</a>
</span>
<a id="ImGuiScene_SimpleImGuiScene_OnSDLEvent_" data-uid="ImGuiScene.SimpleImGuiScene.OnSDLEvent*"></a>
<h4 id="ImGuiScene_SimpleImGuiScene_OnSDLEvent" data-uid="ImGuiScene.SimpleImGuiScene.OnSDLEvent">OnSDLEvent</h4>
@ -294,10 +294,10 @@ This is just a convenience wrapper around <a class="xref" href="ImGuiScene.Simpl
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_PauseWhenUnfocused.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.PauseWhenUnfocused%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_PauseWhenUnfocused.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.PauseWhenUnfocused%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L83">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L83">View Source</a>
</span>
<a id="ImGuiScene_SimpleImGuiScene_PauseWhenUnfocused_" data-uid="ImGuiScene.SimpleImGuiScene.PauseWhenUnfocused*"></a>
<h4 id="ImGuiScene_SimpleImGuiScene_PauseWhenUnfocused" data-uid="ImGuiScene.SimpleImGuiScene.PauseWhenUnfocused">PauseWhenUnfocused</h4>
@ -327,10 +327,10 @@ if you are rendering dynamic data.</p>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_Renderer.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.Renderer%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_Renderer.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.Renderer%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L26">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L26">View Source</a>
</span>
<a id="ImGuiScene_SimpleImGuiScene_Renderer_" data-uid="ImGuiScene.SimpleImGuiScene.Renderer*"></a>
<h4 id="ImGuiScene_SimpleImGuiScene_Renderer" data-uid="ImGuiScene.SimpleImGuiScene.Renderer">Renderer</h4>
@ -358,10 +358,10 @@ if you are rendering dynamic data.</p>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_ShouldQuit.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.ShouldQuit%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_ShouldQuit.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.ShouldQuit%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L31">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L31">View Source</a>
</span>
<a id="ImGuiScene_SimpleImGuiScene_ShouldQuit_" data-uid="ImGuiScene.SimpleImGuiScene.ShouldQuit*"></a>
<h4 id="ImGuiScene_SimpleImGuiScene_ShouldQuit" data-uid="ImGuiScene.SimpleImGuiScene.ShouldQuit">ShouldQuit</h4>
@ -389,10 +389,10 @@ if you are rendering dynamic data.</p>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_Window.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.Window%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_Window.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.Window%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L21">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L21">View Source</a>
</span>
<a id="ImGuiScene_SimpleImGuiScene_Window_" data-uid="ImGuiScene.SimpleImGuiScene.Window*"></a>
<h4 id="ImGuiScene_SimpleImGuiScene_Window" data-uid="ImGuiScene.SimpleImGuiScene.Window">Window</h4>
@ -422,10 +422,10 @@ if you are rendering dynamic data.</p>
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_CreateOverlay_ImGuiScene_RendererFactory_RendererBackend_SDL2_SDL_SDL_Scancode_System_Single___System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.CreateOverlay(ImGuiScene.RendererFactory.RendererBackend%2CSDL2.SDL.SDL_Scancode%2CSystem.Single%5B%5D%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_CreateOverlay_ImGuiScene_RendererFactory_RendererBackend_SDL2_SDL_SDL_Scancode_System_Single___System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.CreateOverlay(ImGuiScene.RendererFactory.RendererBackend%2CSDL2.SDL.SDL_Scancode%2CSystem.Single%5B%5D%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L133">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L133">View Source</a>
</span>
<a id="ImGuiScene_SimpleImGuiScene_CreateOverlay_" data-uid="ImGuiScene.SimpleImGuiScene.CreateOverlay*"></a>
<h4 id="ImGuiScene_SimpleImGuiScene_CreateOverlay_ImGuiScene_RendererFactory_RendererBackend_SDL2_SDL_SDL_Scancode_System_Single___System_Boolean_" data-uid="ImGuiScene.SimpleImGuiScene.CreateOverlay(ImGuiScene.RendererFactory.RendererBackend,SDL2.SDL.SDL_Scancode,System.Single[],System.Boolean)">CreateOverlay(RendererFactory.RendererBackend, SDL.SDL_Scancode, Single[], Boolean)</h4>
@ -489,10 +489,10 @@ if you are rendering dynamic data.</p>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_Dispose.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_Dispose.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L378">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L378">View Source</a>
</span>
<a id="ImGuiScene_SimpleImGuiScene_Dispose_" data-uid="ImGuiScene.SimpleImGuiScene.Dispose*"></a>
<h4 id="ImGuiScene_SimpleImGuiScene_Dispose" data-uid="ImGuiScene.SimpleImGuiScene.Dispose">Dispose()</h4>
@ -504,10 +504,10 @@ if you are rendering dynamic data.</p>
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_Dispose_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.Dispose(System.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_Dispose_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.Dispose(System.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L341">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L341">View Source</a>
</span>
<a id="ImGuiScene_SimpleImGuiScene_Dispose_" data-uid="ImGuiScene.SimpleImGuiScene.Dispose*"></a>
<h4 id="ImGuiScene_SimpleImGuiScene_Dispose_System_Boolean_" data-uid="ImGuiScene.SimpleImGuiScene.Dispose(System.Boolean)">Dispose(Boolean)</h4>
@ -536,10 +536,10 @@ if you are rendering dynamic data.</p>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_Finalize.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.Finalize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_Finalize.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.Finalize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L373">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L373">View Source</a>
</span>
<a id="ImGuiScene_SimpleImGuiScene_Finalize_" data-uid="ImGuiScene.SimpleImGuiScene.Finalize*"></a>
<h4 id="ImGuiScene_SimpleImGuiScene_Finalize" data-uid="ImGuiScene.SimpleImGuiScene.Finalize">Finalize()</h4>
@ -551,10 +551,10 @@ if you are rendering dynamic data.</p>
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_LoadImage_System_Byte___.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.LoadImage(System.Byte%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_LoadImage_System_Byte___.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.LoadImage(System.Byte%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L203">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L203">View Source</a>
</span>
<a id="ImGuiScene_SimpleImGuiScene_LoadImage_" data-uid="ImGuiScene.SimpleImGuiScene.LoadImage*"></a>
<h4 id="ImGuiScene_SimpleImGuiScene_LoadImage_System_Byte___" data-uid="ImGuiScene.SimpleImGuiScene.LoadImage(System.Byte[])">LoadImage(Byte[])</h4>
@ -604,10 +604,10 @@ if you are rendering dynamic data.</p>
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_LoadImage_System_String_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.LoadImage(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_LoadImage_System_String_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.LoadImage(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L186">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L186">View Source</a>
</span>
<a id="ImGuiScene_SimpleImGuiScene_LoadImage_" data-uid="ImGuiScene.SimpleImGuiScene.LoadImage*"></a>
<h4 id="ImGuiScene_SimpleImGuiScene_LoadImage_System_String_" data-uid="ImGuiScene.SimpleImGuiScene.LoadImage(System.String)">LoadImage(String)</h4>
@ -657,10 +657,10 @@ if you are rendering dynamic data.</p>
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_Run.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.Run%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_Run.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.Run%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L296">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L296">View Source</a>
</span>
<a id="ImGuiScene_SimpleImGuiScene_Run_" data-uid="ImGuiScene.SimpleImGuiScene.Run*"></a>
<h4 id="ImGuiScene_SimpleImGuiScene_Run" data-uid="ImGuiScene.SimpleImGuiScene.Run">Run()</h4>
@ -674,10 +674,10 @@ requests an exit (via <a class="xref" href="ImGuiScene.SimpleImGuiScene.html#ImG
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_Update.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.Update%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene_Update.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene.Update%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L250">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L250">View Source</a>
</span>
<a id="ImGuiScene_SimpleImGuiScene_Update_" data-uid="ImGuiScene.SimpleImGuiScene.Update*"></a>
<h4 id="ImGuiScene_SimpleImGuiScene_Update" data-uid="ImGuiScene.SimpleImGuiScene.Update">Update()</h4>
@ -701,10 +701,10 @@ This method does not check any quit conditions.</p>
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleImGuiScene.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleImGuiScene%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/SimpleImGuiScene.cs/#L16" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/SimpleImGuiScene.cs/#L16" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -120,10 +120,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3_ClearColor.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.ClearColor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3_ClearColor.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.ClearColor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L25">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L25">View Source</a>
</span>
<a id="ImGuiScene_SimpleOGL3_ClearColor_" data-uid="ImGuiScene.SimpleOGL3.ClearColor*"></a>
<h4 id="ImGuiScene_SimpleOGL3_ClearColor" data-uid="ImGuiScene.SimpleOGL3.ClearColor">ClearColor</h4>
@ -151,10 +151,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3_ContextMajorVersion.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.ContextMajorVersion%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3_ContextMajorVersion.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.ContextMajorVersion%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L13">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L13">View Source</a>
</span>
<a id="ImGuiScene_SimpleOGL3_ContextMajorVersion_" data-uid="ImGuiScene.SimpleOGL3.ContextMajorVersion*"></a>
<h4 id="ImGuiScene_SimpleOGL3_ContextMajorVersion" data-uid="ImGuiScene.SimpleOGL3.ContextMajorVersion">ContextMajorVersion</h4>
@ -181,10 +181,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3_ContextMinorVersion.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.ContextMinorVersion%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3_ContextMinorVersion.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.ContextMinorVersion%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L14">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L14">View Source</a>
</span>
<a id="ImGuiScene_SimpleOGL3_ContextMinorVersion_" data-uid="ImGuiScene.SimpleOGL3.ContextMinorVersion*"></a>
<h4 id="ImGuiScene_SimpleOGL3_ContextMinorVersion" data-uid="ImGuiScene.SimpleOGL3.ContextMinorVersion">ContextMinorVersion</h4>
@ -211,10 +211,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3_Debuggable.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.Debuggable%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3_Debuggable.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.Debuggable%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L54">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L54">View Source</a>
</span>
<a id="ImGuiScene_SimpleOGL3_Debuggable_" data-uid="ImGuiScene.SimpleOGL3.Debuggable*"></a>
<h4 id="ImGuiScene_SimpleOGL3_Debuggable" data-uid="ImGuiScene.SimpleOGL3.Debuggable">Debuggable</h4>
@ -242,10 +242,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3_Type.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.Type%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3_Type.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.Type%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L19">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L19">View Source</a>
</span>
<a id="ImGuiScene_SimpleOGL3_Type_" data-uid="ImGuiScene.SimpleOGL3.Type*"></a>
<h4 id="ImGuiScene_SimpleOGL3_Type" data-uid="ImGuiScene.SimpleOGL3.Type">Type</h4>
@ -273,10 +273,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3_Vsync.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.Vsync%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3_Vsync.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.Vsync%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L38">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L38">View Source</a>
</span>
<a id="ImGuiScene_SimpleOGL3_Vsync_" data-uid="ImGuiScene.SimpleOGL3.Vsync*"></a>
<h4 id="ImGuiScene_SimpleOGL3_Vsync" data-uid="ImGuiScene.SimpleOGL3.Vsync">Vsync</h4>
@ -306,10 +306,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3_AttachToWindow_ImGuiScene_SimpleSDLWindow_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.AttachToWindow(ImGuiScene.SimpleSDLWindow)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3_AttachToWindow_ImGuiScene_SimpleSDLWindow_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.AttachToWindow(ImGuiScene.SimpleSDLWindow)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L92">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L92">View Source</a>
</span>
<a id="ImGuiScene_SimpleOGL3_AttachToWindow_" data-uid="ImGuiScene.SimpleOGL3.AttachToWindow*"></a>
<h4 id="ImGuiScene_SimpleOGL3_AttachToWindow_ImGuiScene_SimpleSDLWindow_" data-uid="ImGuiScene.SimpleOGL3.AttachToWindow(ImGuiScene.SimpleSDLWindow)">AttachToWindow(SimpleSDLWindow)</h4>
@ -340,10 +340,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3_Clear.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.Clear%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3_Clear.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.Clear%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L123">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L123">View Source</a>
</span>
<a id="ImGuiScene_SimpleOGL3_Clear_" data-uid="ImGuiScene.SimpleOGL3.Clear*"></a>
<h4 id="ImGuiScene_SimpleOGL3_Clear" data-uid="ImGuiScene.SimpleOGL3.Clear">Clear()</h4>
@ -356,10 +356,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3_CreateTexture_System_Void__System_Int32_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.CreateTexture(System.Void*%2CSystem.Int32%2CSystem.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3_CreateTexture_System_Void__System_Int32_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.CreateTexture(System.Void*%2CSystem.Int32%2CSystem.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L147">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L147">View Source</a>
</span>
<a id="ImGuiScene_SimpleOGL3_CreateTexture_" data-uid="ImGuiScene.SimpleOGL3.CreateTexture*"></a>
<h4 id="ImGuiScene_SimpleOGL3_CreateTexture_System_Void__System_Int32_System_Int32_System_Int32_" data-uid="ImGuiScene.SimpleOGL3.CreateTexture(System.Void*,System.Int32,System.Int32,System.Int32)">CreateTexture(Void*, Int32, Int32, Int32)</h4>
@ -418,10 +418,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3_Dispose.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3_Dispose.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L222">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L222">View Source</a>
</span>
<a id="ImGuiScene_SimpleOGL3_Dispose_" data-uid="ImGuiScene.SimpleOGL3.Dispose*"></a>
<h4 id="ImGuiScene_SimpleOGL3_Dispose" data-uid="ImGuiScene.SimpleOGL3.Dispose">Dispose()</h4>
@ -433,10 +433,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3_Dispose_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.Dispose(System.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3_Dispose_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.Dispose(System.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L195">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L195">View Source</a>
</span>
<a id="ImGuiScene_SimpleOGL3_Dispose_" data-uid="ImGuiScene.SimpleOGL3.Dispose*"></a>
<h4 id="ImGuiScene_SimpleOGL3_Dispose_System_Boolean_" data-uid="ImGuiScene.SimpleOGL3.Dispose(System.Boolean)">Dispose(Boolean)</h4>
@ -465,10 +465,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3_Finalize.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.Finalize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3_Finalize.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.Finalize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L216">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L216">View Source</a>
</span>
<a id="ImGuiScene_SimpleOGL3_Finalize_" data-uid="ImGuiScene.SimpleOGL3.Finalize*"></a>
<h4 id="ImGuiScene_SimpleOGL3_Finalize" data-uid="ImGuiScene.SimpleOGL3.Finalize">Finalize()</h4>
@ -480,10 +480,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3_ImGui_Init.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.ImGui_Init%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3_ImGui_Init.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.ImGui_Init%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L171">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L171">View Source</a>
</span>
<a id="ImGuiScene_SimpleOGL3_ImGui_Init_" data-uid="ImGuiScene.SimpleOGL3.ImGui_Init*"></a>
<h4 id="ImGuiScene_SimpleOGL3_ImGui_Init" data-uid="ImGuiScene.SimpleOGL3.ImGui_Init">ImGui_Init()</h4>
@ -495,10 +495,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3_ImGui_NewFrame.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.ImGui_NewFrame%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3_ImGui_NewFrame.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.ImGui_NewFrame%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L181">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L181">View Source</a>
</span>
<a id="ImGuiScene_SimpleOGL3_ImGui_NewFrame_" data-uid="ImGuiScene.SimpleOGL3.ImGui_NewFrame*"></a>
<h4 id="ImGuiScene_SimpleOGL3_ImGui_NewFrame" data-uid="ImGuiScene.SimpleOGL3.ImGui_NewFrame">ImGui_NewFrame()</h4>
@ -510,10 +510,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3_ImGui_RenderDrawData_ImGuiNET_ImDrawDataPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.ImGui_RenderDrawData(ImGuiNET.ImDrawDataPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3_ImGui_RenderDrawData_ImGuiNET_ImDrawDataPtr_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.ImGui_RenderDrawData(ImGuiNET.ImDrawDataPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L186">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L186">View Source</a>
</span>
<a id="ImGuiScene_SimpleOGL3_ImGui_RenderDrawData_" data-uid="ImGuiScene.SimpleOGL3.ImGui_RenderDrawData*"></a>
<h4 id="ImGuiScene_SimpleOGL3_ImGui_RenderDrawData_ImGuiNET_ImDrawDataPtr_" data-uid="ImGuiScene.SimpleOGL3.ImGui_RenderDrawData(ImGuiNET.ImDrawDataPtr)">ImGui_RenderDrawData(ImDrawDataPtr)</h4>
@ -542,10 +542,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3_ImGui_Shutdown.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.ImGui_Shutdown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3_ImGui_Shutdown.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.ImGui_Shutdown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L176">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L176">View Source</a>
</span>
<a id="ImGuiScene_SimpleOGL3_ImGui_Shutdown_" data-uid="ImGuiScene.SimpleOGL3.ImGui_Shutdown*"></a>
<h4 id="ImGuiScene_SimpleOGL3_ImGui_Shutdown" data-uid="ImGuiScene.SimpleOGL3.ImGui_Shutdown">ImGui_Shutdown()</h4>
@ -557,10 +557,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3_Present.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.Present%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3_Present.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3.Present%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L131">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L131">View Source</a>
</span>
<a id="ImGuiScene_SimpleOGL3_Present_" data-uid="ImGuiScene.SimpleOGL3.Present*"></a>
<h4 id="ImGuiScene_SimpleOGL3_Present" data-uid="ImGuiScene.SimpleOGL3.Present">Present()</h4>
@ -586,10 +586,10 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleOGL3.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleOGL3.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleOGL3%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/SimpleOGL3.cs/#L11" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/SimpleOGL3.cs/#L11" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -106,10 +106,10 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_ProcessEventDelegate.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.ProcessEventDelegate%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_ProcessEventDelegate.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.ProcessEventDelegate%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L33" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L33" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -120,10 +120,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_OnSDLEvent.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.OnSDLEvent%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_OnSDLEvent.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.OnSDLEvent%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L48">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L48">View Source</a>
</span>
<a id="ImGuiScene_SimpleSDLWindow_OnSDLEvent_" data-uid="ImGuiScene.SimpleSDLWindow.OnSDLEvent*"></a>
<h4 id="ImGuiScene_SimpleSDLWindow_OnSDLEvent" data-uid="ImGuiScene.SimpleSDLWindow.OnSDLEvent">OnSDLEvent</h4>
@ -151,10 +151,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_WantsClose.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.WantsClose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_WantsClose.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.WantsClose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L43">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L43">View Source</a>
</span>
<a id="ImGuiScene_SimpleSDLWindow_WantsClose_" data-uid="ImGuiScene.SimpleSDLWindow.WantsClose*"></a>
<h4 id="ImGuiScene_SimpleSDLWindow_WantsClose" data-uid="ImGuiScene.SimpleSDLWindow.WantsClose">WantsClose</h4>
@ -182,10 +182,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_Window.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.Window%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_Window.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.Window%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L38">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L38">View Source</a>
</span>
<a id="ImGuiScene_SimpleSDLWindow_Window_" data-uid="ImGuiScene.SimpleSDLWindow.Window*"></a>
<h4 id="ImGuiScene_SimpleSDLWindow_Window" data-uid="ImGuiScene.SimpleSDLWindow.Window">Window</h4>
@ -215,10 +215,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_CreateColorKey_System_Single_System_Single_System_Single_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.CreateColorKey(System.Single%2CSystem.Single%2CSystem.Single)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_CreateColorKey_System_Single_System_Single_System_Single_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.CreateColorKey(System.Single%2CSystem.Single%2CSystem.Single)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L28">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L28">View Source</a>
</span>
<a id="ImGuiScene_SimpleSDLWindow_CreateColorKey_" data-uid="ImGuiScene.SimpleSDLWindow.CreateColorKey*"></a>
<h4 id="ImGuiScene_SimpleSDLWindow_CreateColorKey_System_Single_System_Single_System_Single_" data-uid="ImGuiScene.SimpleSDLWindow.CreateColorKey(System.Single,System.Single,System.Single)">CreateColorKey(Single, Single, Single)</h4>
@ -276,10 +276,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_Dispose.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_Dispose.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L211">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L211">View Source</a>
</span>
<a id="ImGuiScene_SimpleSDLWindow_Dispose_" data-uid="ImGuiScene.SimpleSDLWindow.Dispose*"></a>
<h4 id="ImGuiScene_SimpleSDLWindow_Dispose" data-uid="ImGuiScene.SimpleSDLWindow.Dispose">Dispose()</h4>
@ -291,10 +291,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_Dispose_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.Dispose(System.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_Dispose_System_Boolean_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.Dispose(System.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L184">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L184">View Source</a>
</span>
<a id="ImGuiScene_SimpleSDLWindow_Dispose_" data-uid="ImGuiScene.SimpleSDLWindow.Dispose*"></a>
<h4 id="ImGuiScene_SimpleSDLWindow_Dispose_System_Boolean_" data-uid="ImGuiScene.SimpleSDLWindow.Dispose(System.Boolean)">Dispose(Boolean)</h4>
@ -323,10 +323,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_Finalize.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.Finalize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_Finalize.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.Finalize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L206">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L206">View Source</a>
</span>
<a id="ImGuiScene_SimpleSDLWindow_Finalize_" data-uid="ImGuiScene.SimpleSDLWindow.Finalize*"></a>
<h4 id="ImGuiScene_SimpleSDLWindow_Finalize" data-uid="ImGuiScene.SimpleSDLWindow.Finalize">Finalize()</h4>
@ -338,10 +338,10 @@
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_GetHWnd.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.GetHWnd%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_GetHWnd.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.GetHWnd%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L119">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L119">View Source</a>
</span>
<a id="ImGuiScene_SimpleSDLWindow_GetHWnd_" data-uid="ImGuiScene.SimpleSDLWindow.GetHWnd*"></a>
<h4 id="ImGuiScene_SimpleSDLWindow_GetHWnd" data-uid="ImGuiScene.SimpleSDLWindow.GetHWnd">GetHWnd()</h4>
@ -370,10 +370,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_InitForRenderer_ImGuiScene_IRenderer_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.InitForRenderer(ImGuiScene.IRenderer)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_InitForRenderer_ImGuiScene_IRenderer_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.InitForRenderer(ImGuiScene.IRenderer)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L87">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L87">View Source</a>
</span>
<a id="ImGuiScene_SimpleSDLWindow_InitForRenderer_" data-uid="ImGuiScene.SimpleSDLWindow.InitForRenderer*"></a>
<h4 id="ImGuiScene_SimpleSDLWindow_InitForRenderer_ImGuiScene_IRenderer_" data-uid="ImGuiScene.SimpleSDLWindow.InitForRenderer(ImGuiScene.IRenderer)">InitForRenderer(IRenderer)</h4>
@ -402,10 +402,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_MakeTransparent_System_UInt32_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.MakeTransparent(System.UInt32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_MakeTransparent_System_UInt32_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.MakeTransparent(System.UInt32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L138">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L138">View Source</a>
</span>
<a id="ImGuiScene_SimpleSDLWindow_MakeTransparent_" data-uid="ImGuiScene.SimpleSDLWindow.MakeTransparent*"></a>
<h4 id="ImGuiScene_SimpleSDLWindow_MakeTransparent_System_UInt32_" data-uid="ImGuiScene.SimpleSDLWindow.MakeTransparent(System.UInt32)">MakeTransparent(UInt32)</h4>
@ -440,10 +440,10 @@ Transparent regions behave as if they are not present, and can be clicked throug
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_ProcessEvents.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.ProcessEvents%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_ProcessEvents.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.ProcessEvents%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L157">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L157">View Source</a>
</span>
<a id="ImGuiScene_SimpleSDLWindow_ProcessEvents_" data-uid="ImGuiScene.SimpleSDLWindow.ProcessEvents*"></a>
<h4 id="ImGuiScene_SimpleSDLWindow_ProcessEvents" data-uid="ImGuiScene.SimpleSDLWindow.ProcessEvents">ProcessEvents()</h4>
@ -457,10 +457,10 @@ User handlers from <a class="xref" href="ImGuiScene.SimpleSDLWindow.html#ImGuiSc
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_WindowCreationFlags_ImGuiScene_WindowCreateInfo_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.WindowCreationFlags(ImGuiScene.WindowCreateInfo)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow_WindowCreationFlags_ImGuiScene_WindowCreateInfo_.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow.WindowCreationFlags(ImGuiScene.WindowCreateInfo)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L97">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L97">View Source</a>
</span>
<a id="ImGuiScene_SimpleSDLWindow_WindowCreationFlags_" data-uid="ImGuiScene.SimpleSDLWindow.WindowCreationFlags*"></a>
<h4 id="ImGuiScene_SimpleSDLWindow_WindowCreationFlags_ImGuiScene_WindowCreateInfo_" data-uid="ImGuiScene.SimpleSDLWindow.WindowCreationFlags(ImGuiScene.WindowCreateInfo)">WindowCreationFlags(WindowCreateInfo)</h4>
@ -517,10 +517,10 @@ User handlers from <a class="xref" href="ImGuiScene.SimpleSDLWindow.html#ImGuiSc
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_SimpleSDLWindow.md&amp;value=---%0Auid%3A%20ImGuiScene.SimpleSDLWindow%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L10" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/SimpleSDLWindow.cs/#L10" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -92,10 +92,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_TextureWrap_Height.md&amp;value=---%0Auid%3A%20ImGuiScene.TextureWrap.Height%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_TextureWrap_Height.md&amp;value=---%0Auid%3A%20ImGuiScene.TextureWrap.Height%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/IRenderer.cs/#L83">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/IRenderer.cs/#L83">View Source</a>
</span>
<a id="ImGuiScene_TextureWrap_Height_" data-uid="ImGuiScene.TextureWrap.Height*"></a>
<h4 id="ImGuiScene_TextureWrap_Height" data-uid="ImGuiScene.TextureWrap.Height">Height</h4>
@ -122,10 +122,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_TextureWrap_ImGuiHandle.md&amp;value=---%0Auid%3A%20ImGuiScene.TextureWrap.ImGuiHandle%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_TextureWrap_ImGuiHandle.md&amp;value=---%0Auid%3A%20ImGuiScene.TextureWrap.ImGuiHandle%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/IRenderer.cs/#L81">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/IRenderer.cs/#L81">View Source</a>
</span>
<a id="ImGuiScene_TextureWrap_ImGuiHandle_" data-uid="ImGuiScene.TextureWrap.ImGuiHandle*"></a>
<h4 id="ImGuiScene_TextureWrap_ImGuiHandle" data-uid="ImGuiScene.TextureWrap.ImGuiHandle">ImGuiHandle</h4>
@ -153,10 +153,10 @@
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_TextureWrap_Width.md&amp;value=---%0Auid%3A%20ImGuiScene.TextureWrap.Width%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_TextureWrap_Width.md&amp;value=---%0Auid%3A%20ImGuiScene.TextureWrap.Width%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/IRenderer.cs/#L82">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/IRenderer.cs/#L82">View Source</a>
</span>
<a id="ImGuiScene_TextureWrap_Width_" data-uid="ImGuiScene.TextureWrap.Width*"></a>
<h4 id="ImGuiScene_TextureWrap_Width" data-uid="ImGuiScene.TextureWrap.Width">Width</h4>
@ -189,10 +189,10 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_TextureWrap.md&amp;value=---%0Auid%3A%20ImGuiScene.TextureWrap%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_TextureWrap.md&amp;value=---%0Auid%3A%20ImGuiScene.TextureWrap%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Renderers/IRenderer.cs/#L76" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Renderers/IRenderer.cs/#L76" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -115,10 +115,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_WindowCreateInfo_Fullscreen.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowCreateInfo.Fullscreen%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_WindowCreateInfo_Fullscreen.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowCreateInfo.Fullscreen%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/WindowFactory.cs/#L35">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/WindowFactory.cs/#L35">View Source</a>
</span>
<h4 id="ImGuiScene_WindowCreateInfo_Fullscreen" data-uid="ImGuiScene.WindowCreateInfo.Fullscreen">Fullscreen</h4>
<div class="markdown level1 summary"><p>Whether the window should be created fullscreen. This is a borderless windowed mode and will not affect desktop resolution.
@ -146,10 +146,10 @@ Fullscreen windows are &quot;always on top&quot;.</p>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_WindowCreateInfo_Height.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowCreateInfo.Height%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_WindowCreateInfo_Height.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowCreateInfo.Height%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/WindowFactory.cs/#L30">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/WindowFactory.cs/#L30">View Source</a>
</span>
<h4 id="ImGuiScene_WindowCreateInfo_Height" data-uid="ImGuiScene.WindowCreateInfo.Height">Height</h4>
<div class="markdown level1 summary"><p>The height of the window. Ignored for fullscreen windows.</p>
@ -176,10 +176,10 @@ Fullscreen windows are &quot;always on top&quot;.</p>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_WindowCreateInfo_Title.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowCreateInfo.Title%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_WindowCreateInfo_Title.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowCreateInfo.Title%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/WindowFactory.cs/#L14">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/WindowFactory.cs/#L14">View Source</a>
</span>
<h4 id="ImGuiScene_WindowCreateInfo_Title" data-uid="ImGuiScene.WindowCreateInfo.Title">Title</h4>
<div class="markdown level1 summary"><p>The window title. This will not be visible for fullscreen windows except in things like task manager.</p>
@ -206,10 +206,10 @@ Fullscreen windows are &quot;always on top&quot;.</p>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_WindowCreateInfo_TransparentColor.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowCreateInfo.TransparentColor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_WindowCreateInfo_TransparentColor.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowCreateInfo.TransparentColor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/WindowFactory.cs/#L41">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/WindowFactory.cs/#L41">View Source</a>
</span>
<h4 id="ImGuiScene_WindowCreateInfo_TransparentColor" data-uid="ImGuiScene.WindowCreateInfo.TransparentColor">TransparentColor</h4>
<div class="markdown level1 summary"><p>An optional float[4] color key used to make any matching portion of the window's client area transparent. For example, setting this to magenta will
@ -238,10 +238,10 @@ Values are red, green, blue from 0 to 1.</p>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_WindowCreateInfo_Width.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowCreateInfo.Width%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_WindowCreateInfo_Width.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowCreateInfo.Width%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/WindowFactory.cs/#L26">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/WindowFactory.cs/#L26">View Source</a>
</span>
<h4 id="ImGuiScene_WindowCreateInfo_Width" data-uid="ImGuiScene.WindowCreateInfo.Width">Width</h4>
<div class="markdown level1 summary"><p>The width of the window. Ignored for fullscreen windows.</p>
@ -268,10 +268,10 @@ Values are red, green, blue from 0 to 1.</p>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_WindowCreateInfo_XPos.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowCreateInfo.XPos%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_WindowCreateInfo_XPos.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowCreateInfo.XPos%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/WindowFactory.cs/#L18">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/WindowFactory.cs/#L18">View Source</a>
</span>
<h4 id="ImGuiScene_WindowCreateInfo_XPos" data-uid="ImGuiScene.WindowCreateInfo.XPos">XPos</h4>
<div class="markdown level1 summary"><p>The x location of the top left corner of the window. Ignored for fullscreen windows.</p>
@ -298,10 +298,10 @@ Values are red, green, blue from 0 to 1.</p>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_WindowCreateInfo_YPos.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowCreateInfo.YPos%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_WindowCreateInfo_YPos.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowCreateInfo.YPos%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/WindowFactory.cs/#L22">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/WindowFactory.cs/#L22">View Source</a>
</span>
<h4 id="ImGuiScene_WindowCreateInfo_YPos" data-uid="ImGuiScene.WindowCreateInfo.YPos">YPos</h4>
<div class="markdown level1 summary"><p>The y location of the top left corner of the window. Ignored for fullscreen windows.</p>
@ -334,10 +334,10 @@ Values are red, green, blue from 0 to 1.</p>
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_WindowCreateInfo.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowCreateInfo%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_WindowCreateInfo.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowCreateInfo%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/WindowFactory.cs/#L9" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/WindowFactory.cs/#L9" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -115,10 +115,10 @@
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_WindowFactory_CreateForRenderer_ImGuiScene_IRenderer_ImGuiScene_WindowCreateInfo_.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowFactory.CreateForRenderer(ImGuiScene.IRenderer%2CImGuiScene.WindowCreateInfo)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_WindowFactory_CreateForRenderer_ImGuiScene_IRenderer_ImGuiScene_WindowCreateInfo_.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowFactory.CreateForRenderer(ImGuiScene.IRenderer%2CImGuiScene.WindowCreateInfo)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/WindowFactory.cs/#L55">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/WindowFactory.cs/#L55">View Source</a>
</span>
<a id="ImGuiScene_WindowFactory_CreateForRenderer_" data-uid="ImGuiScene.WindowFactory.CreateForRenderer*"></a>
<h4 id="ImGuiScene_WindowFactory_CreateForRenderer_ImGuiScene_IRenderer_ImGuiScene_WindowCreateInfo_" data-uid="ImGuiScene.WindowFactory.CreateForRenderer(ImGuiScene.IRenderer,ImGuiScene.WindowCreateInfo)">CreateForRenderer(IRenderer, WindowCreateInfo)</h4>
@ -176,10 +176,10 @@
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ff-meli/ImGuiScene/new/dda60b7faa1b12225d165d9e5d239e7e66648aae/apiSpec/new?filename=ImGuiScene_WindowFactory.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowFactory%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ff-meli/ImGuiScene/new/d0c03cd31dac7a3eede52a467ef81def69f87ef9/apiSpec/new?filename=ImGuiScene_WindowFactory.md&amp;value=---%0Auid%3A%20ImGuiScene.WindowFactory%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/ff-meli/ImGuiScene/blob/dda60b7faa1b12225d165d9e5d239e7e66648aae/ImGuiScene/Windowing/WindowFactory.cs/#L47" class="contribution-link">View Source</a>
<a href="https://github.com/ff-meli/ImGuiScene/blob/d0c03cd31dac7a3eede52a467ef81def69f87ef9/ImGuiScene/Windowing/WindowFactory.cs/#L47" class="contribution-link">View Source</a>
</li>
</ul>
</div>

View file

@ -156,6 +156,10 @@ Currently this always creates a new window rather than take ownership of an exis
</h3>
<h4><a class="xref" href="ImGuiScene.RawDX11Scene.BuildUIDelegate.html">RawDX11Scene.BuildUIDelegate</a></h4>
<section></section>
<h4><a class="xref" href="ImGuiScene.RawDX11Scene.NewInputFrameDelegate.html">RawDX11Scene.NewInputFrameDelegate</a></h4>
<section></section>
<h4><a class="xref" href="ImGuiScene.RawDX11Scene.NewRenderFrameDelegate.html">RawDX11Scene.NewRenderFrameDelegate</a></h4>
<section></section>
<h4><a class="xref" href="ImGuiScene.SimpleImGuiScene.BuildUIDelegate.html">SimpleImGuiScene.BuildUIDelegate</a></h4>
<section></section>
<h4><a class="xref" href="ImGuiScene.SimpleSDLWindow.ProcessEventDelegate.html">SimpleSDLWindow.ProcessEventDelegate</a></h4>

View file

@ -69,7 +69,7 @@
<article class="content wrap" id="_content" data-uid="">
<h1 id="dalamud-plugin-api">Dalamud Plugin API</h1>
<p>This is the documentation for the publicly accessible Dalamud plugin API. See the <a href="https://github.com/goaaats/Dalamud.MbPlugin">market board plugin</a> as an example.</p>
<p>This is the documentation for the publicly accessible Dalamud plugin API. See the <a href="https://github.com/goaaats/Dalamud.RichPresence">rich presence plugin</a> as an example.</p>
<p>All plugins have to implement the <a href="Dalamud.Plugin.IDalamudPlugin.html">IDalamudPlugin interface</a> that gives them access to objects like the chat command manager and game client information.</p>
</article>
</div>

View file

@ -138,6 +138,9 @@
<li>
<a href="Dalamud.Game.ClientState.JobGauges.html" name="" title="JobGauges">JobGauges</a>
</li>
<li>
<a href="Dalamud.Game.ClientState.KeyState.html" name="" title="KeyState">KeyState</a>
</li>
</ul>
</li>
<li>
@ -1769,6 +1772,12 @@
<li>
<a href="ImGuiScene.RawDX11Scene.BuildUIDelegate.html" name="" title="RawDX11Scene.BuildUIDelegate">RawDX11Scene.BuildUIDelegate</a>
</li>
<li>
<a href="ImGuiScene.RawDX11Scene.NewInputFrameDelegate.html" name="" title="RawDX11Scene.NewInputFrameDelegate">RawDX11Scene.NewInputFrameDelegate</a>
</li>
<li>
<a href="ImGuiScene.RawDX11Scene.NewRenderFrameDelegate.html" name="" title="RawDX11Scene.NewRenderFrameDelegate">RawDX11Scene.NewRenderFrameDelegate</a>
</li>
<li>
<a href="ImGuiScene.RendererFactory.html" name="" title="RendererFactory">RendererFactory</a>
</li>

View file

@ -345,7 +345,7 @@
"output": {
".html": {
"relative_path": "api/Dalamud.Game.ClientState.Actors.ActorTable.html",
"hash": "yOCYytufBeRJKRGnJBQcgA=="
"hash": "mb95lrWRdiWSDp4I73KhWQ=="
}
},
"is_incremental": true,
@ -501,7 +501,7 @@
"output": {
".html": {
"relative_path": "api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html",
"hash": "/1SgQn1jAz1YeNeP1ODPoA=="
"hash": "07Wyr8sESUG4ZDkjLTosVg=="
}
},
"is_incremental": true,
@ -537,10 +537,10 @@
"output": {
".html": {
"relative_path": "api/Dalamud.Game.ClientState.ClientState.html",
"hash": "+GccwfOSsXxZ2DYVoV1pxQ=="
"hash": "UtaRpLJVIB29NN8nQdsxNQ=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
@ -555,13 +555,25 @@
"is_incremental": true,
"version": ""
},
{
"type": "ManagedReference",
"source_relative_path": "api/Dalamud.Game.ClientState.KeyState.yml",
"output": {
".html": {
"relative_path": "api/Dalamud.Game.ClientState.KeyState.html",
"hash": "fEHbTrdQ6qYqYfh9yaBbHw=="
}
},
"is_incremental": true,
"version": ""
},
{
"type": "ManagedReference",
"source_relative_path": "api/Dalamud.Game.ClientState.Structs.Actor.yml",
"output": {
".html": {
"relative_path": "api/Dalamud.Game.ClientState.Structs.Actor.html",
"hash": "Pn5NZrqDMcsr8ledfwyE8Q=="
"hash": "W2MAH4EowjHSEak6pVUwuQ=="
}
},
"is_incremental": true,
@ -909,10 +921,10 @@
"output": {
".html": {
"relative_path": "api/Dalamud.Game.ClientState.html",
"hash": "bMXBheKNEeLNo4CIMwz3EA=="
"hash": "N0P2MvjdefFlVNN+/+6msQ=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
@ -1032,7 +1044,7 @@
"hash": "WU8PXcwlmcONSAzIRQWBRw=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
@ -1041,10 +1053,10 @@
"output": {
".html": {
"relative_path": "api/Dalamud.Game.Internal.Framework.html",
"hash": "ac8TO3V+YFtEp9SlRg9LbQ=="
"hash": "uHiwmYC2THfu8sEJ2r5nrA=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
@ -1080,7 +1092,7 @@
"hash": "/c5QWDWMdBnF72QnRufrFA=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
@ -1128,7 +1140,7 @@
"hash": "m80x6jKz7GimYvD1uOs64A=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
@ -1200,7 +1212,7 @@
"hash": "mFZv4famcWJK4wp0V0cDIQ=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
@ -1212,7 +1224,7 @@
"hash": "Z6AULGl7gQ2srIhgUlXibQ=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
@ -1224,7 +1236,7 @@
"hash": "yYKSQqdLXtxP5fgvCLkFIA=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
@ -1440,7 +1452,7 @@
"hash": "x1Mo8zSLRaEVbDWPBN4v9g=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
@ -1500,7 +1512,7 @@
"hash": "gi91bqC1OjFQNEqiOJKsJw=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
@ -6201,7 +6213,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiNET.RangeAccessor-1.html",
"hash": "31V1mUauG5peFRm+w9OiuA=="
"hash": "Kh0MYHMlyDYvkQtSlSll3Q=="
}
},
"is_incremental": true,
@ -6225,7 +6237,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiNET.RangePtrAccessor-1.html",
"hash": "8x4YQsZqkK/v4cZX0kKb+Q=="
"hash": "vTcVpOM+Bj+06V7IrpE0Kw=="
}
},
"is_incremental": true,
@ -6261,7 +6273,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.FramerateLimit.LimitType.html",
"hash": "5V5/sn6Jofm6HDcSuICHiw=="
"hash": "3A0TH7QBcTsIdpO8pBjhbA=="
}
},
"is_incremental": true,
@ -6273,7 +6285,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.FramerateLimit.html",
"hash": "uS9J2/9fazfiV4z1AbPmMA=="
"hash": "DypLicBLVpHkaOi2i8xmcA=="
}
},
"is_incremental": true,
@ -6285,7 +6297,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.GLTextureWrap.html",
"hash": "gJpca+uAmTqvbbUGeeJ94w=="
"hash": "iHzURvRrCXz/jtHDE8wmlw=="
}
},
"is_incremental": true,
@ -6297,7 +6309,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.IImGuiInputHandler.html",
"hash": "PZeVIhVQvtaw8GIrUQuhKQ=="
"hash": "YtUy1x3njGDv6++qRvubkg=="
}
},
"is_incremental": true,
@ -6309,7 +6321,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.IImGuiRenderer.html",
"hash": "Js6HEhkYnC3GcUKSnMAOTQ=="
"hash": "ceCnQDgTY0i+Fzsht2vb1g=="
}
},
"is_incremental": true,
@ -6321,7 +6333,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.IRenderer.html",
"hash": "DFzoaA3p/8m7p2Oa+SpJKQ=="
"hash": "XSkfb9DmPjAf4g312jCa4Q=="
}
},
"is_incremental": true,
@ -6333,7 +6345,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.ImGui_Impl_DX11.html",
"hash": "V4a/XEnEaFSNnq9vPNNY1Q=="
"hash": "MgJdg9TrcMLEkEpCl3mTpQ=="
}
},
"is_incremental": true,
@ -6345,7 +6357,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.ImGui_Impl_OpenGL3.html",
"hash": "0/CtZG3IJA+cVxX0grX9cg=="
"hash": "qP0BJ7EHoLty9rDlI2EHeQ=="
}
},
"is_incremental": true,
@ -6357,7 +6369,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.ImGui_Impl_SDL.html",
"hash": "IarcrlouBalVBwPbBfkztg=="
"hash": "0NwPjPHoIhUWJz7hQIgOUg=="
}
},
"is_incremental": true,
@ -6369,7 +6381,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.ImGui_Input_Impl_Direct.html",
"hash": "rYFdCbkfO5pY+sdaNX25Uw=="
"hash": "KYg618RmjFW+/nkgIaTCkA=="
}
},
"is_incremental": true,
@ -6381,7 +6393,31 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.RawDX11Scene.BuildUIDelegate.html",
"hash": "GGBBCVJfL5Gh0m1SRIuk0A=="
"hash": "dln4AtnbhjLxqrfghRP2dA=="
}
},
"is_incremental": true,
"version": ""
},
{
"type": "ManagedReference",
"source_relative_path": "api/ImGuiScene.RawDX11Scene.NewInputFrameDelegate.yml",
"output": {
".html": {
"relative_path": "api/ImGuiScene.RawDX11Scene.NewInputFrameDelegate.html",
"hash": "MzVOj5oyMcpNnedadNWMBQ=="
}
},
"is_incremental": true,
"version": ""
},
{
"type": "ManagedReference",
"source_relative_path": "api/ImGuiScene.RawDX11Scene.NewRenderFrameDelegate.yml",
"output": {
".html": {
"relative_path": "api/ImGuiScene.RawDX11Scene.NewRenderFrameDelegate.html",
"hash": "lb/JfcyUZVPOc0Y/vJfEKA=="
}
},
"is_incremental": true,
@ -6393,7 +6429,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.RawDX11Scene.html",
"hash": "wU1RNQbTh2gzGovi+gFAIA=="
"hash": "KLPpr3W3B7WKLABct6zrmQ=="
}
},
"is_incremental": true,
@ -6405,7 +6441,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.RendererFactory.RendererBackend.html",
"hash": "3F8RQW2nwHvgr2UbYwrPdQ=="
"hash": "6QV68wiPU8TvB5Lt4ZKqkA=="
}
},
"is_incremental": true,
@ -6417,7 +6453,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.RendererFactory.html",
"hash": "UuLi6tDzLxjumLXOxBEVbg=="
"hash": "+StSuX0ZtRBgoQSJdr8MTg=="
}
},
"is_incremental": true,
@ -6429,7 +6465,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.SDLWindowGL.html",
"hash": "jgsb/BFkgImisDDOLnJfvw=="
"hash": "H5bnEfO/VK0EJQNQzZs7eg=="
}
},
"is_incremental": true,
@ -6441,7 +6477,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.SimpleD3D.html",
"hash": "sOZvfGpjU85HCZdZkcsmvQ=="
"hash": "LmK8KdW+bHtWj9PspTW88w=="
}
},
"is_incremental": true,
@ -6453,7 +6489,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.SimpleImGuiScene.BuildUIDelegate.html",
"hash": "Z7QZjEwN9aqI59JKOpG18w=="
"hash": "GtFcVDNYlwu26ybd5iZV2A=="
}
},
"is_incremental": true,
@ -6465,7 +6501,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.SimpleImGuiScene.html",
"hash": "g0R1aBWHO5LP90Y0RkbQAg=="
"hash": "jOXvV2xPwMyVteB3HllT+w=="
}
},
"is_incremental": true,
@ -6477,7 +6513,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.SimpleOGL3.html",
"hash": "AFUnh4UPtwtmWhDWkHCTlw=="
"hash": "hXMEGNd3ceYRxWxgmwu+yA=="
}
},
"is_incremental": true,
@ -6489,7 +6525,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.SimpleSDLWindow.ProcessEventDelegate.html",
"hash": "FSKXOWmfyrjByQeZPl7AGw=="
"hash": "vgklSpE7NE77/+RtEsyW5Q=="
}
},
"is_incremental": true,
@ -6501,7 +6537,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.SimpleSDLWindow.html",
"hash": "pcY+8h+fUgn7RmDorNpPag=="
"hash": "SfMNmJit3PpCGzbRGHB83w=="
}
},
"is_incremental": true,
@ -6513,7 +6549,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.TextureWrap.html",
"hash": "WO9knpS88XQfES52e1/6oA=="
"hash": "hYP/Rhre7ZxAkFpo2j+vVw=="
}
},
"is_incremental": true,
@ -6525,7 +6561,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.WindowCreateInfo.html",
"hash": "f7xc03wnzA7k4h+otVSS7w=="
"hash": "Kj2sHyIUKvKpPcLCW8UyYg=="
}
},
"is_incremental": true,
@ -6537,7 +6573,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.WindowFactory.html",
"hash": "BYs4qCBc2yfeU38eTpSlSg=="
"hash": "S+D60x7rmL+nKuBfZC+6uw=="
}
},
"is_incremental": true,
@ -6549,7 +6585,7 @@
"output": {
".html": {
"relative_path": "api/ImGuiScene.html",
"hash": "WrDfzUKGD64w4M2smza5iQ=="
"hash": "05HemJVfTpjHPGWweE+ChA=="
}
},
"is_incremental": true,
@ -8217,10 +8253,10 @@
"output": {
".html": {
"relative_path": "api/index.html",
"hash": "Y7W3npbJph/JcPu1DOK3aQ=="
"hash": "uS51zSUKzJYdepDkulBJ9Q=="
}
},
"is_incremental": true,
"is_incremental": false,
"version": ""
},
{
@ -8229,7 +8265,7 @@
"output": {
".html": {
"relative_path": "api/toc.html",
"hash": "9xlGtKjjiJAIDdKg2f8qag=="
"hash": "Uez3KosDLlWbsSW5GonF7A=="
}
},
"is_incremental": false,
@ -8244,7 +8280,7 @@
"hash": "s84u+FH+UKO4kliIcL2f7w=="
}
},
"is_incremental": true,
"is_incremental": false,
"version": ""
}
],
@ -8264,17 +8300,17 @@
"total_file_count": 0,
"skipped_file_count": 0
},
"ManagedReferenceDocumentProcessor": {
"can_incremental": true,
"incrementalPhase": "build",
"total_file_count": 686,
"skipped_file_count": 686
},
"ConceptualDocumentProcessor": {
"can_incremental": true,
"incrementalPhase": "build",
"total_file_count": 3,
"skipped_file_count": 3
},
"ManagedReferenceDocumentProcessor": {
"can_incremental": true,
"incrementalPhase": "build",
"total_file_count": 683,
"skipped_file_count": 681
"skipped_file_count": 2
}
}
},

View file

@ -2238,6 +2238,32 @@ references:
isSpec: "True"
fullName: Dalamud.Game.ClientState.Actors.ActorTable.ActorTable
nameWithType: ActorTable.ActorTable
- uid: Dalamud.Game.ClientState.Actors.ActorTable.Dispose
name: Dispose()
href: api/Dalamud.Game.ClientState.Actors.ActorTable.html#Dalamud_Game_ClientState_Actors_ActorTable_Dispose
commentId: M:Dalamud.Game.ClientState.Actors.ActorTable.Dispose
fullName: Dalamud.Game.ClientState.Actors.ActorTable.Dispose()
nameWithType: ActorTable.Dispose()
- uid: Dalamud.Game.ClientState.Actors.ActorTable.Dispose*
name: Dispose
href: api/Dalamud.Game.ClientState.Actors.ActorTable.html#Dalamud_Game_ClientState_Actors_ActorTable_Dispose_
commentId: Overload:Dalamud.Game.ClientState.Actors.ActorTable.Dispose
isSpec: "True"
fullName: Dalamud.Game.ClientState.Actors.ActorTable.Dispose
nameWithType: ActorTable.Dispose
- uid: Dalamud.Game.ClientState.Actors.ActorTable.Enable
name: Enable()
href: api/Dalamud.Game.ClientState.Actors.ActorTable.html#Dalamud_Game_ClientState_Actors_ActorTable_Enable
commentId: M:Dalamud.Game.ClientState.Actors.ActorTable.Enable
fullName: Dalamud.Game.ClientState.Actors.ActorTable.Enable()
nameWithType: ActorTable.Enable()
- uid: Dalamud.Game.ClientState.Actors.ActorTable.Enable*
name: Enable
href: api/Dalamud.Game.ClientState.Actors.ActorTable.html#Dalamud_Game_ClientState_Actors_ActorTable_Enable_
commentId: Overload:Dalamud.Game.ClientState.Actors.ActorTable.Enable
isSpec: "True"
fullName: Dalamud.Game.ClientState.Actors.ActorTable.Enable
nameWithType: ActorTable.Enable
- uid: Dalamud.Game.ClientState.Actors.ActorTable.GetEnumerator
name: GetEnumerator()
href: api/Dalamud.Game.ClientState.Actors.ActorTable.html#Dalamud_Game_ClientState_Actors_ActorTable_GetEnumerator
@ -2887,6 +2913,19 @@ references:
isSpec: "True"
fullName: Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.PlayerCharacter
nameWithType: PlayerCharacter.PlayerCharacter
- uid: Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.CompanyTag
name: CompanyTag
href: api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html#Dalamud_Game_ClientState_Actors_Types_PlayerCharacter_CompanyTag
commentId: P:Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.CompanyTag
fullName: Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.CompanyTag
nameWithType: PlayerCharacter.CompanyTag
- uid: Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.CompanyTag*
name: CompanyTag
href: api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html#Dalamud_Game_ClientState_Actors_Types_PlayerCharacter_CompanyTag_
commentId: Overload:Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.CompanyTag
isSpec: "True"
fullName: Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.CompanyTag
nameWithType: PlayerCharacter.CompanyTag
- uid: Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.CurrentWorld
name: CurrentWorld
href: api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html#Dalamud_Game_ClientState_Actors_Types_PlayerCharacter_CurrentWorld
@ -2944,12 +2983,44 @@ references:
commentId: F:Dalamud.Game.ClientState.ClientState.ClientLanguage
fullName: Dalamud.Game.ClientState.ClientState.ClientLanguage
nameWithType: ClientState.ClientLanguage
- uid: Dalamud.Game.ClientState.ClientState.Dispose
name: Dispose()
href: api/Dalamud.Game.ClientState.ClientState.html#Dalamud_Game_ClientState_ClientState_Dispose
commentId: M:Dalamud.Game.ClientState.ClientState.Dispose
fullName: Dalamud.Game.ClientState.ClientState.Dispose()
nameWithType: ClientState.Dispose()
- uid: Dalamud.Game.ClientState.ClientState.Dispose*
name: Dispose
href: api/Dalamud.Game.ClientState.ClientState.html#Dalamud_Game_ClientState_ClientState_Dispose_
commentId: Overload:Dalamud.Game.ClientState.ClientState.Dispose
isSpec: "True"
fullName: Dalamud.Game.ClientState.ClientState.Dispose
nameWithType: ClientState.Dispose
- uid: Dalamud.Game.ClientState.ClientState.Enable
name: Enable()
href: api/Dalamud.Game.ClientState.ClientState.html#Dalamud_Game_ClientState_ClientState_Enable
commentId: M:Dalamud.Game.ClientState.ClientState.Enable
fullName: Dalamud.Game.ClientState.ClientState.Enable()
nameWithType: ClientState.Enable()
- uid: Dalamud.Game.ClientState.ClientState.Enable*
name: Enable
href: api/Dalamud.Game.ClientState.ClientState.html#Dalamud_Game_ClientState_ClientState_Enable_
commentId: Overload:Dalamud.Game.ClientState.ClientState.Enable
isSpec: "True"
fullName: Dalamud.Game.ClientState.ClientState.Enable
nameWithType: ClientState.Enable
- uid: Dalamud.Game.ClientState.ClientState.JobGauges
name: JobGauges
href: api/Dalamud.Game.ClientState.ClientState.html#Dalamud_Game_ClientState_ClientState_JobGauges
commentId: F:Dalamud.Game.ClientState.ClientState.JobGauges
fullName: Dalamud.Game.ClientState.ClientState.JobGauges
nameWithType: ClientState.JobGauges
- uid: Dalamud.Game.ClientState.ClientState.KeyState
name: KeyState
href: api/Dalamud.Game.ClientState.ClientState.html#Dalamud_Game_ClientState_ClientState_KeyState
commentId: F:Dalamud.Game.ClientState.ClientState.KeyState
fullName: Dalamud.Game.ClientState.ClientState.KeyState
nameWithType: ClientState.KeyState
- uid: Dalamud.Game.ClientState.ClientState.LocalContentId
name: LocalContentId
href: api/Dalamud.Game.ClientState.ClientState.html#Dalamud_Game_ClientState_ClientState_LocalContentId
@ -2982,17 +3053,16 @@ references:
commentId: E:Dalamud.Game.ClientState.ClientState.PropertyChanged
fullName: Dalamud.Game.ClientState.ClientState.PropertyChanged
nameWithType: ClientState.PropertyChanged
- uid: Dalamud.Game.ClientState.ClientState.TerritoryChanged
name: TerritoryChanged
href: api/Dalamud.Game.ClientState.ClientState.html#Dalamud_Game_ClientState_ClientState_TerritoryChanged
commentId: F:Dalamud.Game.ClientState.ClientState.TerritoryChanged
fullName: Dalamud.Game.ClientState.ClientState.TerritoryChanged
nameWithType: ClientState.TerritoryChanged
- uid: Dalamud.Game.ClientState.ClientState.TerritoryType
name: TerritoryType
href: api/Dalamud.Game.ClientState.ClientState.html#Dalamud_Game_ClientState_ClientState_TerritoryType
commentId: P:Dalamud.Game.ClientState.ClientState.TerritoryType
fullName: Dalamud.Game.ClientState.ClientState.TerritoryType
nameWithType: ClientState.TerritoryType
- uid: Dalamud.Game.ClientState.ClientState.TerritoryType*
name: TerritoryType
href: api/Dalamud.Game.ClientState.ClientState.html#Dalamud_Game_ClientState_ClientState_TerritoryType_
commentId: Overload:Dalamud.Game.ClientState.ClientState.TerritoryType
isSpec: "True"
commentId: F:Dalamud.Game.ClientState.ClientState.TerritoryType
fullName: Dalamud.Game.ClientState.ClientState.TerritoryType
nameWithType: ClientState.TerritoryType
- uid: Dalamud.Game.ClientState.JobGauges
@ -3030,6 +3100,54 @@ references:
fullName.vb: Dalamud.Game.ClientState.JobGauges.Get(Of T)()
nameWithType: JobGauges.Get<T>()
nameWithType.vb: JobGauges.Get(Of T)()
- uid: Dalamud.Game.ClientState.KeyState
name: KeyState
href: api/Dalamud.Game.ClientState.KeyState.html
commentId: T:Dalamud.Game.ClientState.KeyState
fullName: Dalamud.Game.ClientState.KeyState
nameWithType: KeyState
- uid: Dalamud.Game.ClientState.KeyState.#ctor(Dalamud.Game.ClientState.ClientStateAddressResolver,System.IntPtr)
name: KeyState(ClientStateAddressResolver, IntPtr)
href: api/Dalamud.Game.ClientState.KeyState.html#Dalamud_Game_ClientState_KeyState__ctor_Dalamud_Game_ClientState_ClientStateAddressResolver_System_IntPtr_
commentId: M:Dalamud.Game.ClientState.KeyState.#ctor(Dalamud.Game.ClientState.ClientStateAddressResolver,System.IntPtr)
fullName: Dalamud.Game.ClientState.KeyState.KeyState(Dalamud.Game.ClientState.ClientStateAddressResolver, System.IntPtr)
nameWithType: KeyState.KeyState(ClientStateAddressResolver, IntPtr)
- uid: Dalamud.Game.ClientState.KeyState.#ctor*
name: KeyState
href: api/Dalamud.Game.ClientState.KeyState.html#Dalamud_Game_ClientState_KeyState__ctor_
commentId: Overload:Dalamud.Game.ClientState.KeyState.#ctor
isSpec: "True"
fullName: Dalamud.Game.ClientState.KeyState.KeyState
nameWithType: KeyState.KeyState
- uid: Dalamud.Game.ClientState.KeyState.ClearAll
name: ClearAll()
href: api/Dalamud.Game.ClientState.KeyState.html#Dalamud_Game_ClientState_KeyState_ClearAll
commentId: M:Dalamud.Game.ClientState.KeyState.ClearAll
fullName: Dalamud.Game.ClientState.KeyState.ClearAll()
nameWithType: KeyState.ClearAll()
- uid: Dalamud.Game.ClientState.KeyState.ClearAll*
name: ClearAll
href: api/Dalamud.Game.ClientState.KeyState.html#Dalamud_Game_ClientState_KeyState_ClearAll_
commentId: Overload:Dalamud.Game.ClientState.KeyState.ClearAll
isSpec: "True"
fullName: Dalamud.Game.ClientState.KeyState.ClearAll
nameWithType: KeyState.ClearAll
- uid: Dalamud.Game.ClientState.KeyState.Item(System.Int32)
name: Item[Int32]
href: api/Dalamud.Game.ClientState.KeyState.html#Dalamud_Game_ClientState_KeyState_Item_System_Int32_
commentId: P:Dalamud.Game.ClientState.KeyState.Item(System.Int32)
name.vb: Item(Int32)
fullName: Dalamud.Game.ClientState.KeyState.Item[System.Int32]
fullName.vb: Dalamud.Game.ClientState.KeyState.Item(System.Int32)
nameWithType: KeyState.Item[Int32]
nameWithType.vb: KeyState.Item(Int32)
- uid: Dalamud.Game.ClientState.KeyState.Item*
name: Item
href: api/Dalamud.Game.ClientState.KeyState.html#Dalamud_Game_ClientState_KeyState_Item_
commentId: Overload:Dalamud.Game.ClientState.KeyState.Item
isSpec: "True"
fullName: Dalamud.Game.ClientState.KeyState.Item
nameWithType: KeyState.Item
- uid: Dalamud.Game.ClientState.Structs
name: Dalamud.Game.ClientState.Structs
href: api/Dalamud.Game.ClientState.Structs.html
@ -3054,6 +3172,12 @@ references:
commentId: F:Dalamud.Game.ClientState.Structs.Actor.ClassJob
fullName: Dalamud.Game.ClientState.Structs.Actor.ClassJob
nameWithType: Actor.ClassJob
- uid: Dalamud.Game.ClientState.Structs.Actor.CompanyTag
name: CompanyTag
href: api/Dalamud.Game.ClientState.Structs.Actor.html#Dalamud_Game_ClientState_Structs_Actor_CompanyTag
commentId: F:Dalamud.Game.ClientState.Structs.Actor.CompanyTag
fullName: Dalamud.Game.ClientState.Structs.Actor.CompanyTag
nameWithType: Actor.CompanyTag
- uid: Dalamud.Game.ClientState.Structs.Actor.CurrentHp
name: CurrentHp
href: api/Dalamud.Game.ClientState.Structs.Actor.html#Dalamud_Game_ClientState_Structs_Actor_CurrentHp
@ -67760,12 +67884,36 @@ references:
isSpec: "True"
fullName: ImGuiScene.RawDX11Scene.LoadImage
nameWithType: RawDX11Scene.LoadImage
- uid: ImGuiScene.RawDX11Scene.NewInputFrameDelegate
name: RawDX11Scene.NewInputFrameDelegate
href: api/ImGuiScene.RawDX11Scene.NewInputFrameDelegate.html
commentId: T:ImGuiScene.RawDX11Scene.NewInputFrameDelegate
fullName: ImGuiScene.RawDX11Scene.NewInputFrameDelegate
nameWithType: RawDX11Scene.NewInputFrameDelegate
- uid: ImGuiScene.RawDX11Scene.NewRenderFrameDelegate
name: RawDX11Scene.NewRenderFrameDelegate
href: api/ImGuiScene.RawDX11Scene.NewRenderFrameDelegate.html
commentId: T:ImGuiScene.RawDX11Scene.NewRenderFrameDelegate
fullName: ImGuiScene.RawDX11Scene.NewRenderFrameDelegate
nameWithType: RawDX11Scene.NewRenderFrameDelegate
- uid: ImGuiScene.RawDX11Scene.OnBuildUI
name: OnBuildUI
href: api/ImGuiScene.RawDX11Scene.html#ImGuiScene_RawDX11Scene_OnBuildUI
commentId: F:ImGuiScene.RawDX11Scene.OnBuildUI
fullName: ImGuiScene.RawDX11Scene.OnBuildUI
nameWithType: RawDX11Scene.OnBuildUI
- uid: ImGuiScene.RawDX11Scene.OnNewInputFrame
name: OnNewInputFrame
href: api/ImGuiScene.RawDX11Scene.html#ImGuiScene_RawDX11Scene_OnNewInputFrame
commentId: F:ImGuiScene.RawDX11Scene.OnNewInputFrame
fullName: ImGuiScene.RawDX11Scene.OnNewInputFrame
nameWithType: RawDX11Scene.OnNewInputFrame
- uid: ImGuiScene.RawDX11Scene.OnNewRenderFrame
name: OnNewRenderFrame
href: api/ImGuiScene.RawDX11Scene.html#ImGuiScene_RawDX11Scene_OnNewRenderFrame
commentId: F:ImGuiScene.RawDX11Scene.OnNewRenderFrame
fullName: ImGuiScene.RawDX11Scene.OnNewRenderFrame
nameWithType: RawDX11Scene.OnNewRenderFrame
- uid: ImGuiScene.RawDX11Scene.OnPostResize(System.Int32,System.Int32)
name: OnPostResize(Int32, Int32)
href: api/ImGuiScene.RawDX11Scene.html#ImGuiScene_RawDX11Scene_OnPostResize_System_Int32_System_Int32_