Axiom.RenderSystems.OpenGL.GLSL.GLSLProgram.SetParam C# (CSharp) 메소드

SetParam() 공개 메소드

Set a custom param for this high level gpu program.
public SetParam ( string name, string val ) : bool
name string
val string
리턴 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;
		}