Added Summeries
This commit is contained in:
parent
71a22df8bd
commit
8296d9b8a9
47 changed files with 812 additions and 177 deletions
|
|
@ -4,13 +4,22 @@ using SM2D.Shader;
|
|||
|
||||
namespace SM2D.Pipelines
|
||||
{
|
||||
/// <summary>
|
||||
/// This implements the most basic render pipeline.
|
||||
/// </summary>
|
||||
public class Basic2DPipeline : RenderPipeline
|
||||
{
|
||||
/// <summary>
|
||||
/// The access to the pipeline.
|
||||
/// </summary>
|
||||
public static Basic2DPipeline Pipeline = new Basic2DPipeline();
|
||||
|
||||
/// <inheritdoc />
|
||||
public override MaterialShader DefaultShader { get; protected set; } = ShaderCollection.Instanced;
|
||||
|
||||
private Basic2DPipeline() {}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void RenderProcess(ref DrawContext context)
|
||||
{
|
||||
context.Scene?.Draw(context);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue