diff options
author | Joursoir <chat@joursoir.net> | 2022-04-02 14:53:21 +0300 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2022-04-02 14:53:21 +0300 |
commit | af43c61f3736605ce0f5a2bd9496b167531b5b2f (patch) | |
tree | 9039dbd9f5b855c36f0019462d9072336015fac6 /UefiMonitorTest/UefiMonitorTest.h | |
parent | 45e788abaf9010efacee53733b449b19a43cd02c (diff) | |
download | umt-af43c61f3736605ce0f5a2bd9496b167531b5b2f.tar.gz umt-af43c61f3736605ce0f5a2bd9496b167531b5b2f.tar.bz2 umt-af43c61f3736605ce0f5a2bd9496b167531b5b2f.zip |
main: work only with 4 bytes color
Diffstat (limited to 'UefiMonitorTest/UefiMonitorTest.h')
-rw-r--r-- | UefiMonitorTest/UefiMonitorTest.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/UefiMonitorTest/UefiMonitorTest.h b/UefiMonitorTest/UefiMonitorTest.h index 1199e78..32214d6 100644 --- a/UefiMonitorTest/UefiMonitorTest.h +++ b/UefiMonitorTest/UefiMonitorTest.h @@ -17,13 +17,13 @@ typedef struct { /// Base address of graphics linear frame buffer. /// Starts from the upper left pixel. /// - UINT8 *FrontBuffer; + UINT32 *FrontBuffer; /// /// Pointer to allocated memory. Secondary linear buffer. /// - UINT8 *BackBuffer; + UINT32 *BackBuffer; /// - /// Amount of frame buffer needed to support the active mode. + /// Amount of frame buffer needed to support the active mode in bytes. /// UINTN BufferSize; /// |