Spark.Emit.HLSL.EmitContextHLSL.MakePseudoArrayElemTypeImpl C# (CSharp) Method

MakePseudoArrayElemTypeImpl() private method

private MakePseudoArrayElemTypeImpl ( PseudoArrayTypeHLSL type, EmitValHLSL count ) : ITypeHLSL
type PseudoArrayTypeHLSL
count EmitValHLSL
return ITypeHLSL
        private ITypeHLSL MakePseudoArrayElemTypeImpl(
            PseudoArrayTypeHLSL type,
            EmitValHLSL count)
        {
            return new PseudoArrayTypeHLSL(
                MakePseudoArrayElemType(
                    type.ElementType,
                    count),
                type.ElementCount);
        }

Same methods

EmitContextHLSL::MakePseudoArrayElemTypeImpl ( RealTypeHLSL type, EmitValHLSL count ) : ITypeHLSL
EmitContextHLSL::MakePseudoArrayElemTypeImpl ( TupleTypeHLSL type, EmitValHLSL count ) : ITypeHLSL