Axiom.Graphics.UnifiedHighLevelGpuProgram.AddDelegateProgram C# (CSharp) Method

AddDelegateProgram() public method

Adds a new delegate program to the list.
Delegates are tested in order so earlier ones are preferred.
public AddDelegateProgram ( string delegateName ) : void
delegateName string
return void
		public void AddDelegateProgram( string delegateName )
		{
			_delegateNames.Add( delegateName );
			// Invalidate current selection
			_chosenDelegate = null;
		}