feat: implement core graphics rendering system and D3D12 RHI backend infrastructure

This commit is contained in:
2026-04-18 21:03:05 +09:00
parent abd5ad74d5
commit 4f5556ee1b
25 changed files with 1072 additions and 924 deletions

View File

@@ -33,16 +33,6 @@ public enum BindlessAccess
public unsafe interface IResourceDatabase : IDisposable
{
/// <summary>
/// Enters a parallel read section, allowing multiple threads to read from the resource database concurrently and block any write operations until all readers have exited.
/// </summary>
void EnterParallelRead();
/// <summary>
/// Exits a parallel read section, allowing write operations to proceed once all readers have exited.
/// </summary>
void ExitParallelRead();
/// <summary>
/// Checks if a resource with the specified handle exists in the database.
/// </summary>