namespace EPOOutline
{
///
/// Describes how main buffer size is going to be calculated.
///
public enum BufferSizeMode
{
///
/// Uses width and the to calculate the buffer size.
/// The width of the buffer will be equal to the .
/// The height will be calculated to match the aspect ratio.
///
WidthControlsHeight,
///
/// Uses height and the to calculate the buffer size.
/// The height of the buffer will be equal to the .
/// The width will be calculated to match the aspect ratio.
///
HeightControlsWidth,
///
/// The buffer size will be calculated as the target size (usually the screen size) scaled by .
///
Scaled,
///
/// The buffer size will be equal to the target size (usually the screen size).
///
Native
}
}