Allow to clear framebuffer screen with any, custom background color

This commit is contained in:
2024-05-12 22:43:06 +02:00
parent c576f7f8f2
commit e311cad8f7
3 changed files with 27 additions and 5 deletions

View File

@@ -154,6 +154,17 @@ typedef struct _HAL_FRAMEBUFFER_DATA
UINT BitsPerPixel;
UINT Pitch;
PVOID Font;
struct
{
USHORT BlueShift;
USHORT BlueSize;
USHORT GreenShift;
USHORT GreenSize;
USHORT RedShift;
USHORT RedSize;
USHORT ReservedShift;
USHORT ReservedSize;
} Pixels;
} HAL_FRAMEBUFFER_DATA, *PHAL_FRAMEBUFFER_DATA;
/* SMBIOS table header structure */