forked from Misaki/GhostEngine
10 lines
250 B
C#
10 lines
250 B
C#
using Ghost.Graphics.RHI;
|
|
|
|
namespace Ghost.Graphics.Contracts;
|
|
|
|
public interface IRenderPass
|
|
{
|
|
public void Initialize(ICommandBuffer cmd);
|
|
public void Execute(ICommandBuffer cmd);
|
|
public void Cleanup(IResourceDatabase resourceDatabase);
|
|
} |