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

IntrinsicMatrixTypeSymbol() private method

private IntrinsicMatrixTypeSymbol ( string name, string documentation, ScalarType scalarType, int rows, int cols )
name string
documentation string
scalarType ScalarType
rows int
cols int
        internal IntrinsicMatrixTypeSymbol(string name, string documentation, ScalarType scalarType, int rows, int cols)
            : base(SymbolKind.IntrinsicMatrixType, name, documentation, scalarType)
        {
            Rows = rows;
            Cols = cols;
        }