diff options
| author | Micha White <botahamec@outlook.com> | 2022-10-13 11:48:43 -0400 |
|---|---|---|
| committer | Micha White <botahamec@outlook.com> | 2022-10-13 11:48:43 -0400 |
| commit | d2b0c276eecd24a56164ec7d00407594ad88219d (patch) | |
| tree | 466efa439d63c5255b2f523e3d508cc2f5797df6 /src | |
| parent | 121dc57f0962f27ab9e5da2ec05d3a1b1d97cdb2 (diff) | |
Removed bitmap support
Diffstat (limited to 'src')
| -rw-r--r-- | src/texture.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/texture.rs b/src/texture.rs index ac2dd63..1002136 100644 --- a/src/texture.rs +++ b/src/texture.rs @@ -25,7 +25,6 @@ impl TextureId { #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)] pub enum ImageFormat { - Bmp, Ico, Farbfeld, } @@ -33,7 +32,6 @@ pub enum ImageFormat { impl ImageFormat { const fn format(self) -> image::ImageFormat { match self { - Self::Bmp => image::ImageFormat::Bmp, Self::Ico => image::ImageFormat::Ico, Self::Farbfeld => image::ImageFormat::Farbfeld, } |
