namespace EPOOutline
{
///
/// Describes dilate quality to use to render the outline.
///
public enum DilateQuality
{
///
/// Base quality. Normal quality with the best performance.
///
Base,
///
/// Higher quality dilate, but requires more processing power.
///
High,
///
/// Best quality dilate, but requires has a performance overhead.
///
Ultra
}
}