07.10.2020
+ Parent, Name and Flags to objects. ~ Improved Matrix calculations
This commit is contained in:
parent
f865496414
commit
2c00dbd31a
21 changed files with 383 additions and 42 deletions
16
SMCode/SM.Base/PostProcessing/PostProcessingEffect.cs
Normal file
16
SMCode/SM.Base/PostProcessing/PostProcessingEffect.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
using System.Collections.Generic;
|
||||
using SM.OGL.Framebuffer;
|
||||
|
||||
namespace SM.Base.PostProcessing
|
||||
{
|
||||
public abstract class PostProcessingEffect
|
||||
{
|
||||
public virtual Dictionary<string, int> AdditionalFramebufferOutputs { get; }
|
||||
public virtual ICollection<Framebuffer> AdditionalFramebuffers { get; }
|
||||
|
||||
public void ApplyOutputs(Framebuffer mainbuffer)
|
||||
{
|
||||
mainbuffer.Append();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue