Continue working on RHI

This commit is contained in:
2025-09-12 21:44:32 +09:00
parent 1b0ef03728
commit 1dfed83e38
49 changed files with 1780 additions and 2195 deletions

View File

@@ -1,9 +1,9 @@
using Ghost.Graphics.D3D12;
using Ghost.Graphics.RHI;
namespace Ghost.Graphics.Contracts;
public interface IRenderPass : IDisposable
{
void Initialize(CommandList cmd);
void Execute(CommandList cmd);
void Initialize(ICommandBuffer cmd);
void Execute(ICommandBuffer cmd);
}