namespace EPOOutline
{
///
/// Outline rendering strategy.
///
public enum OutlineRenderingStrategy
{
///
/// All outlines are rendered to the same buffer.
///
Default,
///
/// Each outlinable rendered and postprocessed separately. Allows to have overlapping outlinables but greatly increases the performance penalty.
///
PerObject
}
}