Afterglow.Graphics.SlimDXFactory.CreateTextureParameter C# (CSharp) Method

CreateTextureParameter() public method

Creates a texture effect parameter.
public CreateTextureParameter ( string semanticName, ITexture texture ) : SemanticEffectParameter
semanticName string Name of the semantic.
texture ITexture The texture.
return SemanticEffectParameter
        public SemanticEffectParameter<ITexture> CreateTextureParameter(string semanticName, ITexture texture)
        {
            return new SlimDXTextureEffectParameter(mDevice, semanticName, texture);
        }