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

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

Creates a new instance of HLSLProgram
public HLSLProgram ( ResourceManager parent, string name, System.UInt64 handle, string group, bool isManual, IManualResourceLoader loader ) : System
parent Axiom.Core.ResourceManager the ResourceManager that owns this resource
name string Name of the program
handle System.UInt64 The resource id of the program
group string the resource group
isManual bool is the program manually loaded?
loader IManualResourceLoader the loader responsible for this program
Результат System
		public HLSLProgram( ResourceManager parent, string name, ResourceHandle handle, string group, bool isManual, IManualResourceLoader loader )
			: base( parent, name, handle, group, isManual, loader )
		{
			includeHandler = new HLSLIncludeHandler( this );
		    columnMajorMatrices = true;
		}