// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts.Tables.General.Colr {
///
/// Defines the extend mode for COLR v1 gradient color lines, controlling how the gradient
/// is rendered outside the region defined by the color stops.
///
///
internal enum Extend : byte
{
///
/// Pad: the color at the nearest stop is used for all positions outside the stop range.
///
Pad = 0,
///
/// Repeat: the gradient pattern is repeated beyond the stop range.
///
Repeat = 1,
///
/// Reflect: the gradient pattern is reflected (mirrored) alternately beyond the stop range.
///
Reflect = 2
}
}