public ForwardPass(ForwardPassDescription ForwardPassDescription) { this.ForwardPassDescription = ForwardPassDescription; }
public void ApplyForwardPassDescription(ForwardPassDescription desc) { this.ForwardPassDescription = desc; }
/// <summary> /// Defaults this instance. /// </summary> /// <returns></returns> public static DeferredRenderTechnicInitDescription Default() { return(new DeferredRenderTechnicInitDescription(new GBuffer(), new LightMap(), new FinalCombination(Color.Black), new ForwardPass(ForwardPassDescription.Default()), Color.Black, false, false, true, true, true, new string[] { PrincipalConstants.CurrentImage, PrincipalConstants.colorRT, PrincipalConstants.normalRt, PrincipalConstants.lightRt }, RestoreDepthOption.BEFORE_POSTEFFECT)); }