Axiom.Graphics.CompositionTechnique.GetTargetPass C# (CSharp) Method

GetTargetPass() public method

Get's a target passs by index.
public GetTargetPass ( int index ) : CompositionTargetPass
index int index of the target pass
return CompositionTargetPass
		public virtual CompositionTargetPass GetTargetPass( int index )
		{
			Debug.Assert( index < this.targetPasses.Count, "Index out of bounds, CompositionTechnqiuqe.GetTargetPass" );
			return this.targetPasses[ index ];
		}