2026-04-15 20:14:48 +08:00
|
|
|
namespace XCEngine
|
|
|
|
|
{
|
|
|
|
|
public abstract class ScriptableRenderPipeline : Object
|
|
|
|
|
{
|
|
|
|
|
protected ScriptableRenderPipeline()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected internal virtual bool SupportsStageRenderGraph(
|
|
|
|
|
CameraFrameStage stage)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected internal virtual bool RecordStageRenderGraph(
|
2026-04-17 21:53:52 +08:00
|
|
|
ScriptableRenderContext context)
|
2026-04-15 20:14:48 +08:00
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|