Added CopyTexture support in ICommandBuffer

This commit is contained in:
2026-02-26 21:40:07 +09:00
parent 162b71f309
commit 6f802ac12b
7 changed files with 136 additions and 1325 deletions

View File

@@ -0,0 +1,9 @@
using Ghost.Graphics.Core;
using Ghost.Graphics.RHI;
namespace Ghost.Graphics.Contracts;
public interface IRenderPipeline
{
void Render(RenderContext ctx, ReadOnlySpan<Camera> cameras);
}