ruffle/core/src/config.rs

26 lines
791 B
Rust
Raw Normal View History

2021-04-16 02:19:48 +00:00
use gc_arena::Collect;
2021-01-06 08:42:10 +00:00
use serde::{Deserialize, Serialize};
/// Controls whether the content is letterboxed or pillarboxed when the
/// player's aspect ratio does not match the movie's aspect ratio.
///
/// When letterboxed, black bars will be rendered around the exterior
/// margins of the content.
#[derive(Default, Debug, Clone, Copy, PartialEq, Eq, Collect, Serialize, Deserialize)]
2021-04-16 02:19:48 +00:00
#[collect(require_static)]
#[serde(rename = "letterbox")]
2021-01-06 08:42:10 +00:00
pub enum Letterbox {
/// The content will never be letterboxed.
#[serde(rename = "off")]
2021-01-06 08:42:10 +00:00
Off,
/// The content will only be letterboxed if the content is running fullscreen.
#[serde(rename = "fullscreen")]
#[default]
2021-01-06 08:42:10 +00:00
Fullscreen,
/// The content will always be letterboxed.
#[serde(rename = "on")]
2021-01-06 08:42:10 +00:00
On,
}