Refactoring Rendering backend

This commit is contained in:
2025-10-05 16:26:37 +09:00
parent a39f377533
commit 01a850ff94
99 changed files with 5056 additions and 5136 deletions

View File

@@ -2,8 +2,9 @@
namespace Ghost.Graphics.Contracts;
public interface IRenderPass : IDisposable
public interface IRenderPass
{
void Initialize(ICommandBuffer cmd);
void Execute(ICommandBuffer cmd);
public void Initialize(ICommandBuffer cmd);
public void Execute(ICommandBuffer cmd);
public void Cleanup(IResourceDatabase resourceDatabase);
}