Axiom.Graphics.GpuProgramParameters.AutoConstantDefinition.AutoConstantDefinition C# (CSharp) Method

AutoConstantDefinition() private method

private AutoConstantDefinition ( AutoConstantType autoConstantType, string name, int elementCount, ElementType elementType, AutoConstantDataType dataType ) : Axiom.Scripting
autoConstantType AutoConstantType
name string
elementCount int
elementType ElementType
dataType AutoConstantDataType
return Axiom.Scripting
            public AutoConstantDefinition( AutoConstantType autoConstantType, string name, int elementCount, ElementType elementType, AutoConstantDataType dataType )
            {
                AutoConstantType = autoConstantType;
                Name = name;
                ElementCount = elementCount;
                ElementType = elementType;
                DataType = dataType;
            }
        }
GpuProgramParameters.AutoConstantDefinition