|
@@ -1,6 +1,6 @@
|
|
|
-use header::Tag;
|
|
|
use ::Reader;
|
|
|
use core::slice;
|
|
|
+use header::Tag;
|
|
|
|
|
|
/// The VBE Framebuffer information Tag.
|
|
|
#[derive(Debug, PartialEq)]
|
|
@@ -15,17 +15,17 @@ pub struct FramebufferTag<'a> {
|
|
|
/// Contains the pitch in bytes.
|
|
|
pub pitch: u32,
|
|
|
|
|
|
- /// Contain framebuffer width in pixels.
|
|
|
+ /// Contains framebuffer width in pixels.
|
|
|
pub width: u32,
|
|
|
|
|
|
- /// Contain framebuffer height in pixels.
|
|
|
+ /// Contains framebuffer height in pixels.
|
|
|
pub height: u32,
|
|
|
|
|
|
/// Contains number of bits per pixel.
|
|
|
pub bpp: u8,
|
|
|
|
|
|
- /// The type of framebuffer, one of: Indexed, RGB or Text.
|
|
|
- pub buffer_type: FramebufferType<'a>
|
|
|
+ /// The type of framebuffer, one of: `Indexed`, `RGB` or `Text`.
|
|
|
+ pub buffer_type: FramebufferType<'a>,
|
|
|
}
|
|
|
|
|
|
/// The type of framebuffer.
|
|
@@ -34,7 +34,7 @@ pub enum FramebufferType<'a> {
|
|
|
/// Indexed color.
|
|
|
Indexed {
|
|
|
#[allow(missing_docs)]
|
|
|
- palette: &'a [FramebufferColor]
|
|
|
+ palette: &'a [FramebufferColor],
|
|
|
},
|
|
|
|
|
|
/// Direct RGB color.
|
|
@@ -42,7 +42,7 @@ pub enum FramebufferType<'a> {
|
|
|
RGB {
|
|
|
red: FramebufferField,
|
|
|
green: FramebufferField,
|
|
|
- blue: FramebufferField
|
|
|
+ blue: FramebufferField,
|
|
|
},
|
|
|
|
|
|
/// EGA Text.
|
|
@@ -51,7 +51,7 @@ pub enum FramebufferType<'a> {
|
|
|
/// characters and not in pixels.
|
|
|
///
|
|
|
/// The bpp is equal 16 (16 bits per character) and pitch is expressed in bytes per text line.
|
|
|
- Text
|
|
|
+ Text,
|
|
|
}
|
|
|
|
|
|
/// An RGB color type field.
|
|
@@ -61,21 +61,21 @@ pub struct FramebufferField {
|
|
|
pub position: u8,
|
|
|
|
|
|
/// Color mask size.
|
|
|
- pub size: u8
|
|
|
+ pub size: u8,
|
|
|
}
|
|
|
|
|
|
/// A framebuffer color descriptor in the palette.
|
|
|
#[derive(Clone, Copy, Debug, PartialEq)]
|
|
|
#[repr(C, packed)]
|
|
|
pub struct FramebufferColor {
|
|
|
- /// The amount of Red.
|
|
|
+ /// The Red component of the color.
|
|
|
pub red: u8,
|
|
|
|
|
|
- /// The amount of Green.
|
|
|
+ /// The Green component of the color.
|
|
|
pub green: u8,
|
|
|
|
|
|
- /// The amount of Blue.
|
|
|
- pub blue: u8
|
|
|
+ /// The Blue component of the color.
|
|
|
+ pub blue: u8,
|
|
|
}
|
|
|
|
|
|
pub fn framebuffer_tag<'a>(tag: &'a Tag) -> FramebufferTag<'a> {
|
|
@@ -90,28 +90,40 @@ pub fn framebuffer_tag<'a>(tag: &'a Tag) -> FramebufferTag<'a> {
|
|
|
reader.skip(2); // In the multiboot spec, it has this listed as a u8 _NOT_ a u16.
|
|
|
// Reading the GRUB2 source code reveals it is in fact a u16.
|
|
|
let buffer_type = match type_no {
|
|
|
- 0 => {
|
|
|
+ 0 => {
|
|
|
let num_colors = reader.read_u32();
|
|
|
let palette = unsafe {
|
|
|
- slice::from_raw_parts(reader.current_address() as *const FramebufferColor, num_colors as usize)
|
|
|
+ slice::from_raw_parts(
|
|
|
+ reader.current_address() as *const FramebufferColor,
|
|
|
+ num_colors as usize,
|
|
|
+ )
|
|
|
} as &'static [FramebufferColor];
|
|
|
FramebufferType::Indexed { palette }
|
|
|
- },
|
|
|
+ }
|
|
|
1 => {
|
|
|
- let red_pos = reader.read_u8(); // These refer to the bit positions of the LSB of each field
|
|
|
- let red_mask = reader.read_u8(); // And then the length of the field from LSB to MSB
|
|
|
- let green_pos = reader.read_u8();
|
|
|
- let green_mask = reader.read_u8();
|
|
|
+ let red_pos = reader.read_u8(); // These refer to the bit positions of the LSB of each field
|
|
|
+ let red_mask = reader.read_u8(); // And then the length of the field from LSB to MSB
|
|
|
+ let green_pos = reader.read_u8();
|
|
|
+ let green_mask = reader.read_u8();
|
|
|
let blue_pos = reader.read_u8();
|
|
|
let blue_mask = reader.read_u8();
|
|
|
FramebufferType::RGB {
|
|
|
- red: FramebufferField { position: red_pos, size: red_mask },
|
|
|
- green: FramebufferField { position: green_pos, size: green_mask },
|
|
|
- blue: FramebufferField { position: blue_pos, size: blue_mask }
|
|
|
+ red: FramebufferField {
|
|
|
+ position: red_pos,
|
|
|
+ size: red_mask,
|
|
|
+ },
|
|
|
+ green: FramebufferField {
|
|
|
+ position: green_pos,
|
|
|
+ size: green_mask,
|
|
|
+ },
|
|
|
+ blue: FramebufferField {
|
|
|
+ position: blue_pos,
|
|
|
+ size: blue_mask,
|
|
|
+ },
|
|
|
}
|
|
|
- },
|
|
|
+ }
|
|
|
2 => FramebufferType::Text,
|
|
|
- _ => panic!("Unknown framebuffer type: {}", type_no)
|
|
|
+ _ => panic!("Unknown framebuffer type: {}", type_no),
|
|
|
};
|
|
|
|
|
|
FramebufferTag {
|
|
@@ -120,6 +132,6 @@ pub fn framebuffer_tag<'a>(tag: &'a Tag) -> FramebufferTag<'a> {
|
|
|
width,
|
|
|
height,
|
|
|
bpp,
|
|
|
- buffer_type
|
|
|
+ buffer_type,
|
|
|
}
|
|
|
}
|