ShaderTools.Hlsl.Binding.IntrinsicBinder.IntrinsicBinder C# (CSharp) Method

IntrinsicBinder() static private method

static private IntrinsicBinder ( ) : System.Collections.Generic
return System.Collections.Generic
        static IntrinsicBinder()
        {
            LocalSymbolDictionary = IntrinsicFunctions.AllFunctions
                .Cast<Symbol>()
                .Union(IntrinsicSemantics.AllSemantics)
                .Union(IntrinsicTypes.AllTypes)
                .Union(IntrinsicNumericConstructors.AllFunctions)
                .GroupBy(x => x.Name)
                .ToDictionary(x => x.Key, x => x.ToList());
        }

Same methods

IntrinsicBinder::IntrinsicBinder ( SharedBinderState sharedBinderState ) : System.Collections.Generic
IntrinsicBinder