Skip to content

Commit

Permalink
docs: remove to do
Browse files Browse the repository at this point in the history
  • Loading branch information
psydack committed Jun 1, 2021
1 parent 3d18097 commit bf20b54
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion Source/Platform/PlatformUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ public static bool IsAvailable(InputType type)
{
switch (type)
{
// TODO: Fix when using only new input system and you choose InputType throws error.
case InputType.InputManager:
return true;
#if HAS_INPUTSYSTEM
Expand Down
2 changes: 1 addition & 1 deletion Source/Texture/TextureManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ internal class TextureManager
private readonly Dictionary<UTexture, IntPtr> _textureIds = new Dictionary<UTexture, IntPtr>();
private readonly Dictionary<Sprite, SpriteInfo> _spriteData = new Dictionary<Sprite, SpriteInfo>();

private readonly HashSet<IntPtr> _allocatedGlyphRangeArrays = new HashSet<IntPtr>(); // TODO: Check if yet IntPtr has boxing when comparing equality (see original version)
private readonly HashSet<IntPtr> _allocatedGlyphRangeArrays = new HashSet<IntPtr>();

public unsafe void Initialize(ImGuiIOPtr io)
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Utils/ImGuiExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace UImGui
{
internal static unsafe class ImGuiExtension
{
private static readonly HashSet<IntPtr> _managedAllocations = new HashSet<IntPtr>(); // TODO: Check if yet IntPtr has boxing when comparing equality (see original version)
private static readonly HashSet<IntPtr> _managedAllocations = new HashSet<IntPtr>();

internal static void SetBackendPlatformName(this ImGuiIOPtr io, string name)
{
Expand Down

0 comments on commit bf20b54

Please sign in to comment.