1
0
Fork 0
forked from wry/wry

formats: add support for additional formats

This commit is contained in:
Julian Orth 2025-11-28 15:02:46 +01:00
parent da74f61bea
commit c3177c6469
3 changed files with 97 additions and 0 deletions

View file

@ -727,6 +727,14 @@ impl Format {
pub const XBGR16161616: Self = Self(25);
pub const ABGR16161616F: Self = Self(26);
pub const XBGR16161616F: Self = Self(27);
pub const BGR161616: Self = Self(28);
pub const R16F: Self = Self(29);
pub const GR1616F: Self = Self(30);
pub const BGR161616F: Self = Self(31);
pub const R32F: Self = Self(32);
pub const GR3232F: Self = Self(33);
pub const BGR323232F: Self = Self(34);
pub const ABGR32323232F: Self = Self(35);
}
/// A color space.