// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts.Rendering {
///
/// Specifies how a gradient should extend beyond the [0, 1] range.
///
public enum SpreadMethod
{
///
/// Clamp to the end colors (pad).
///
Pad = 0,
///
/// Mirror the gradient (reflect).
///
Reflect = 1,
///
/// Repeat the gradient (tile).
///
Repeat = 2,
}
}