9 lines
192 B
C#
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);
|
|
} |