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
41
42
43
44
45
46
47
48
49
50
51
use crate::{HeaderTagFlag, HeaderTagType, StructAsBytes};
use core::mem::size_of;
#[derive(Copy, Clone, Debug)]
#[repr(C, packed(8))]
pub struct FramebufferHeaderTag {
typ: HeaderTagType,
flags: HeaderTagFlag,
size: u32,
width: u32,
height: u32,
depth: u32,
}
impl FramebufferHeaderTag {
pub const fn new(flags: HeaderTagFlag, width: u32, height: u32, depth: u32) -> Self {
FramebufferHeaderTag {
typ: HeaderTagType::Framebuffer,
flags,
size: size_of::<Self>() as u32,
width,
height,
depth,
}
}
pub const fn typ(&self) -> HeaderTagType {
self.typ
}
pub const fn flags(&self) -> HeaderTagFlag {
self.flags
}
pub const fn size(&self) -> u32 {
self.size
}
pub const fn width(&self) -> u32 {
self.width
}
pub const fn height(&self) -> u32 {
self.height
}
pub const fn depth(&self) -> u32 {
self.depth
}
}
impl StructAsBytes for FramebufferHeaderTag {}