// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Microsoft.Toolkit.Uwp.UI.Media.Pipelines;
namespace Microsoft.Toolkit.Uwp.UI.Media
{
///
/// A luminance to alpha effect
///
/// This effect maps to the Win2D effect
public sealed class LuminanceToAlphaEffect : PipelineEffect
{
///
public override PipelineBuilder AppendToBuilder(PipelineBuilder builder)
{
return builder.LuminanceToAlpha();
}
}
}