Files
GhostEngine/Ghost.Graphics/Contracts/IRenderPass.cs
2025-09-12 21:44:32 +09:00

9 lines
192 B
C#

using Ghost.Graphics.RHI;
namespace Ghost.Graphics.Contracts;
public interface IRenderPass : IDisposable
{
void Initialize(ICommandBuffer cmd);
void Execute(ICommandBuffer cmd);
}