2019-08-24 03:33:39 +03:00
|
|
|
|
// 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.
|
|
|
|
|
|
2022-05-25 20:18:30 +03:00
|
|
|
|
namespace CommunityToolkit.WinUI.Lottie.WinCompData
|
2019-08-24 03:33:39 +03:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Specifies the color space for interpolating color values in <see cref="ColorKeyFrameAnimation"/>.
|
|
|
|
|
/// </summary>
|
2019-09-18 01:40:06 +03:00
|
|
|
|
[MetaData.UapVersion(2)]
|
2019-08-24 03:33:39 +03:00
|
|
|
|
#if PUBLIC_WinCompData
|
|
|
|
|
public
|
|
|
|
|
#endif
|
|
|
|
|
enum CompositionColorSpace
|
|
|
|
|
{
|
|
|
|
|
Auto = 0,
|
|
|
|
|
Hsl = 1,
|
|
|
|
|
Rgb = 2,
|
|
|
|
|
HslLinear = 3,
|
|
|
|
|
RgbLinear = 4,
|
|
|
|
|
}
|
|
|
|
|
}
|