formats.rs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. trait Sealed {}
  2. #[derive(Clone, Copy, PartialEq, Eq, Hash, Debug)]
  3. #[repr(u8)]
  4. pub enum PixelFormat {
  5. A8,
  6. Abgr32,
  7. Bgr24,
  8. Bgr32,
  9. Rgb24,
  10. Rgb32,
  11. Rgba32,
  12. }
  13. pub(crate) const NUM_PIXEL_FORMATS: usize = 7;
  14. pub(crate) const MAX_PIXEL_WIDTH: usize = 4;
  15. #[derive(Clone, PartialEq, Debug, Default)]
  16. pub struct PackedLocation(Option<u8>);
  17. impl PackedLocation {
  18. const fn empty() -> Self {
  19. Self(None)
  20. }
  21. const fn select_byte(index: u8) -> Self {
  22. Self(Some(index))
  23. }
  24. pub const fn index(&self) -> Option<u8> {
  25. self.0
  26. }
  27. }
  28. #[allow(private_bounds)]
  29. pub trait PixelFormatSpec: Sealed + Clone + Copy + PartialEq {
  30. const FORMAT_ENUM: PixelFormat;
  31. const CHANNELS: usize;
  32. const PIXEL_WIDTH: usize;
  33. const NAME: &'static str;
  34. const RED_PACK: PackedLocation;
  35. const GREEN_PACK: PackedLocation;
  36. const BLUE_PACK: PackedLocation;
  37. const ALPHA_PACK: PackedLocation;
  38. }
  39. //-----------------------------------------------------------------------------
  40. // Pixel formats
  41. //-----------------------------------------------------------------------------
  42. /// 8-bit alpha map
  43. #[derive(Clone, Copy, PartialEq)]
  44. pub struct A8;
  45. impl Sealed for A8 {}
  46. impl PixelFormatSpec for A8 {
  47. const FORMAT_ENUM: PixelFormat = PixelFormat::A8;
  48. const CHANNELS: usize = 1;
  49. const PIXEL_WIDTH: usize = 1;
  50. const NAME: &'static str = "A8";
  51. const RED_PACK: PackedLocation = PackedLocation::empty();
  52. const GREEN_PACK: PackedLocation = PackedLocation::empty();
  53. const BLUE_PACK: PackedLocation = PackedLocation::empty();
  54. const ALPHA_PACK: PackedLocation = PackedLocation::select_byte(0);
  55. }
  56. /// RGBA with 8 bits per channel, stored big-endian
  57. ///
  58. /// This assumes the following memory layout:
  59. /// ```text
  60. /// 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | ...
  61. /// ---+---+---+---+---+---+---+---+---
  62. /// A | B | G | R | A | B | G | R | ...
  63. /// ```
  64. #[derive(Clone, Copy, PartialEq)]
  65. pub struct Abgr32;
  66. impl Sealed for Abgr32 {}
  67. impl PixelFormatSpec for Abgr32 {
  68. const FORMAT_ENUM: PixelFormat = PixelFormat::Abgr32;
  69. const CHANNELS: usize = 4;
  70. const PIXEL_WIDTH: usize = 4;
  71. const NAME: &'static str = "Abgr32";
  72. const RED_PACK: PackedLocation = PackedLocation::select_byte(3);
  73. const GREEN_PACK: PackedLocation = PackedLocation::select_byte(2);
  74. const BLUE_PACK: PackedLocation = PackedLocation::select_byte(1);
  75. const ALPHA_PACK: PackedLocation = PackedLocation::select_byte(0);
  76. }
  77. /// 24bpp colour densly packed into 24-bit words
  78. ///
  79. /// This assumes the following memory layout:
  80. ///
  81. /// ```text
  82. /// 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | ...
  83. /// ---+---+---+---+---+---+---+---+---
  84. /// R | G | B | R | G | B | R | G | ...
  85. /// ```
  86. #[derive(Clone, Copy, PartialEq)]
  87. pub struct Bgr24;
  88. impl Sealed for Bgr24 {}
  89. impl PixelFormatSpec for Bgr24 {
  90. const FORMAT_ENUM: PixelFormat = PixelFormat::Bgr24;
  91. const CHANNELS: usize = 3;
  92. const PIXEL_WIDTH: usize = 3;
  93. const NAME: &'static str = "Bgr24";
  94. const RED_PACK: PackedLocation = PackedLocation::select_byte(0);
  95. const GREEN_PACK: PackedLocation = PackedLocation::select_byte(1);
  96. const BLUE_PACK: PackedLocation = PackedLocation::select_byte(2);
  97. const ALPHA_PACK: PackedLocation = PackedLocation::empty();
  98. }
  99. /// 24bpp colour packed into 32-bit words
  100. ///
  101. /// This assumes the following memory layout:
  102. ///
  103. /// ```text
  104. /// 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | ...
  105. /// ---+---+---+---+---+---+---+---+---
  106. /// R | G | B | - | R | G | B | - | ...
  107. /// ```
  108. #[derive(Clone, Copy, PartialEq)]
  109. pub struct Bgr32;
  110. impl Sealed for Bgr32 {}
  111. impl PixelFormatSpec for Bgr32 {
  112. const FORMAT_ENUM: PixelFormat = PixelFormat::Bgr32;
  113. const CHANNELS: usize = 3;
  114. const PIXEL_WIDTH: usize = 4;
  115. const NAME: &'static str = "Bgr32";
  116. const RED_PACK: PackedLocation = PackedLocation::select_byte(2);
  117. const GREEN_PACK: PackedLocation = PackedLocation::select_byte(1);
  118. const BLUE_PACK: PackedLocation = PackedLocation::select_byte(0);
  119. const ALPHA_PACK: PackedLocation = PackedLocation::empty();
  120. }
  121. /// 24bpp colour densly packed into 24-bit words
  122. ///
  123. /// This assumes the following memory layout:
  124. ///
  125. /// ```text
  126. /// 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | ...
  127. /// ---+---+---+---+---+---+---+---+---
  128. /// B | G | R | B | G | R | B | G | ...
  129. /// ```
  130. #[derive(Clone, Copy, PartialEq)]
  131. pub struct Rgb24;
  132. impl Sealed for Rgb24 {}
  133. impl PixelFormatSpec for Rgb24 {
  134. const FORMAT_ENUM: PixelFormat = PixelFormat::Rgb24;
  135. const CHANNELS: usize = 3;
  136. const PIXEL_WIDTH: usize = 3;
  137. const NAME: &'static str = "Rgb24";
  138. const RED_PACK: PackedLocation = PackedLocation::select_byte(2);
  139. const GREEN_PACK: PackedLocation = PackedLocation::select_byte(1);
  140. const BLUE_PACK: PackedLocation = PackedLocation::select_byte(0);
  141. const ALPHA_PACK: PackedLocation = PackedLocation::empty();
  142. }
  143. /// 24bpp colour packed into 32-bit words
  144. ///
  145. /// This assumes the following memory layout:
  146. ///
  147. /// ```text
  148. /// 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | ...
  149. /// ---+---+---+---+---+---+---+---+---
  150. /// B | G | R | - | B | G | R | - | ...
  151. /// ```
  152. #[derive(Clone, Copy, PartialEq)]
  153. pub struct Rgb32;
  154. impl Sealed for Rgb32 {}
  155. impl PixelFormatSpec for Rgb32 {
  156. const FORMAT_ENUM: PixelFormat = PixelFormat::Rgb32;
  157. const CHANNELS: usize = 3;
  158. const PIXEL_WIDTH: usize = 4;
  159. const NAME: &'static str = "Rgb32";
  160. const RED_PACK: PackedLocation = PackedLocation::select_byte(2);
  161. const GREEN_PACK: PackedLocation = PackedLocation::select_byte(1);
  162. const BLUE_PACK: PackedLocation = PackedLocation::select_byte(0);
  163. const ALPHA_PACK: PackedLocation = PackedLocation::empty();
  164. }
  165. /// RGBA with 8 bits per channel, stored little-endian
  166. ///
  167. /// This assumes the following memory layout:
  168. /// ```text
  169. /// 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | ...
  170. /// ---+---+---+---+---+---+---+---+---
  171. /// R | G | B | A | R | G | B | A | ...
  172. /// ```
  173. #[derive(Clone, Copy, PartialEq)]
  174. pub struct Rgba32;
  175. impl Sealed for Rgba32 {}
  176. impl PixelFormatSpec for Rgba32 {
  177. const FORMAT_ENUM: PixelFormat = PixelFormat::Rgba32;
  178. const CHANNELS: usize = 4;
  179. const PIXEL_WIDTH: usize = 4;
  180. const NAME: &'static str = "Rgba32";
  181. const RED_PACK: PackedLocation = PackedLocation::select_byte(0);
  182. const GREEN_PACK: PackedLocation = PackedLocation::select_byte(1);
  183. const BLUE_PACK: PackedLocation = PackedLocation::select_byte(2);
  184. const ALPHA_PACK: PackedLocation = PackedLocation::select_byte(3);
  185. }