- derive fullscreen stage planning from pipeline render-graph support - trim planning-only APIs from the managed SRP bridge and public surface - update probes and tests to lock the slimmer SRP API boundary
28 lines
625 B
C#
28 lines
625 B
C#
using XCEngine;
|
|
|
|
namespace XCEngine.Rendering
|
|
{
|
|
public abstract class ScriptableRenderPipelineAsset : RenderPipelineAsset
|
|
{
|
|
protected ScriptableRenderPipelineAsset()
|
|
{
|
|
}
|
|
|
|
protected virtual ScriptableRenderPipeline CreatePipeline()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
protected virtual void ConfigureCameraRenderRequest(
|
|
ScriptableRenderPipelineCameraRequestContext context)
|
|
{
|
|
}
|
|
|
|
protected virtual FinalColorSettings GetDefaultFinalColorSettings()
|
|
{
|
|
return FinalColorSettings.CreateDefault();
|
|
}
|
|
}
|
|
}
|
|
|