Axiom.RenderSystems.OpenGL.GLSL.GLSLProgram.SetParam C# (CSharp) Method

SetParam() public method

Set a custom param for this high level gpu program.
public SetParam ( string name, string val ) : bool
name string
val string
return bool
		public override bool SetParam( string name, string val )
		{
		    IPropertyCommand cmd;
		    if (!_commandTable.TryGetValue( name, out cmd ))
			    return false;

            cmd.Set( this, val );
		    return true;
		}