diff options
author | Marvin Borner | 2019-10-27 01:42:14 +0200 |
---|---|---|
committer | Marvin Borner | 2019-10-27 01:42:14 +0200 |
commit | 52503f9b654f68f11dea676e9636c2004176ef29 (patch) | |
tree | 89fe33d74c034ea16da1d88dd5b4ff4781586dbf /src/kernel/graphics/vesa.h | |
parent | 85d26a441057b0fe9ba97b8d6a4c436bd2155f08 (diff) |
Heureka! Fixed VESA resolution finder!
Diffstat (limited to 'src/kernel/graphics/vesa.h')
-rw-r--r-- | src/kernel/graphics/vesa.h | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/src/kernel/graphics/vesa.h b/src/kernel/graphics/vesa.h index a741060..daf8701 100644 --- a/src/kernel/graphics/vesa.h +++ b/src/kernel/graphics/vesa.h @@ -56,7 +56,7 @@ struct vbe_info { * The CPUs response to the 0x4F01 call * Used to get information about a specific video mode code */ -struct vbe_mode_info_all { +struct vbe_mode_info { uint16_t attributes; uint8_t window_a; uint8_t window_b; @@ -95,20 +95,6 @@ struct vbe_mode_info_all { } __attribute__ ((packed)); /** - * The actual vbe mode info structure - */ -struct vbe_mode_info { - uint16_t attributes; - uint16_t width; - uint16_t height; - uint16_t pitch; - uint8_t bpp; - uint8_t memory_model; - uint32_t framebuffer; - int success; -} __attribute__ ((packed)); - -/** * Get the monitors EDID information * TODO: Add EDID/VBE resolution mode verification * @return The EDID information |