1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
use std::fmt;

use crate::parsing::{
    Parse,
    ParseError,
};

#[derive(Clone, Debug, PartialEq, Default)]
pub enum SamplingMode {
    #[default]
    Nearest,
    Bilinear,
    Trilinear,
    Mitchell,
    CatmullRom,
}

impl Parse for SamplingMode {
    fn parse(value: &str) -> Result<Self, ParseError> {
        Ok(match value {
            "bilinear" => SamplingMode::Bilinear,
            "trilinear" => SamplingMode::Trilinear,
            "mitchell" => SamplingMode::Mitchell,
            "catmull-rom" => SamplingMode::CatmullRom,
            _ => SamplingMode::Nearest,
        })
    }
}

impl fmt::Display for SamplingMode {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str(match self {
            SamplingMode::Nearest => "nearest",
            SamplingMode::Bilinear => "bilinear",
            SamplingMode::Trilinear => "trilinear",
            SamplingMode::Mitchell => "mitchell",
            SamplingMode::CatmullRom => "catmull-rom",
        })
    }
}