Axiom.RenderSystems.OpenGL.Nvidia.NV3xGpuProgram.Bind C# (CSharp) Method

Bind() public method

Binds an NV program.
public Bind ( ) : void
return void
		public override void Bind()
		{
			// enable this program type
			Gl.glEnable( programType );

			// bind the program to the context
			Gl.glBindProgramNV( programType, programId );
		}