Axiom.RenderSystems.DirectX9.HLSL.HLSLProgram.CreateParameters C# (CSharp) Метод

CreateParameters() публичный Метод

Creates a new parameters object compatible with this program definition.
Unlike low-level assembly programs, parameters objects are specific to the program and therefore must be created from it rather than by the HighLevelGpuProgramManager. This method creates a new instance of a parameters object containing the definition of the parameters this program understands.
public CreateParameters ( ) : GpuProgramParameters
Результат Axiom.Graphics.GpuProgramParameters
		public override GpuProgramParameters CreateParameters()
		{
			GpuProgramParameters parms = base.CreateParameters();

			parms.TransposeMatrices = true;

			return parms;
		}