ShaderTools.Hlsl.Symbols.IntrinsicVectorTypeSymbol.IntrinsicVectorTypeSymbol C# (CSharp) Method

IntrinsicVectorTypeSymbol() private method

private IntrinsicVectorTypeSymbol ( string name, string documentation, ScalarType scalarType, int numComponents )
name string
documentation string
scalarType ScalarType
numComponents int
        internal IntrinsicVectorTypeSymbol(string name, string documentation, ScalarType scalarType, int numComponents)
            : base(SymbolKind.IntrinsicVectorType, name, documentation, scalarType)
        {
            NumComponents = numComponents;
        }