Initial support for EFI framebuffer

This commit is contained in:
2023-01-19 16:23:39 +01:00
parent fb60724710
commit 9cbe2d458c
6 changed files with 151 additions and 0 deletions

View File

@@ -98,4 +98,16 @@ typedef struct _CPPORT
USHORT Flags;
} CPPORT, *PCPPORT;
typedef struct _HAL_FRAMEBUFFER_DATA
{
BOOLEAN Initialized;
PULONG Address;
ULONG_PTR BufferSize;
UINT Width;
UINT Height;
UINT PixelsPerScanLine;
UINT BitsPerPixel;
UINT Pitch;
} HAL_FRAMEBUFFER_DATA, *PHAL_FRAMEBUFFER_DATA;
#endif /* __XTDK_HLTYPES_H */