Updated D3D12Renderer for testing.

This commit is contained in:
2025-11-11 16:10:17 +09:00
parent 56f73e774b
commit fb003da26a
7 changed files with 107 additions and 87 deletions

View File

@@ -18,7 +18,8 @@ public readonly struct Handle<T>
public static Handle<T> Invalid => new(-1, -1);
public bool IsValid => this != Invalid;
public readonly bool IsValid => this != Invalid;
public readonly bool IsNotValid => this == Invalid;
public readonly override int GetHashCode()
{
@@ -63,7 +64,8 @@ public readonly struct Identifier<T>
public static Identifier<T> Invalid => new(-1);
public bool IsValid => this != Invalid;
public readonly bool IsValid => this != Invalid;
public readonly bool IsNotValid => this == Invalid;
public readonly override int GetHashCode()
{