Implement framebuffer double buffering

This commit is contained in:
2026-05-04 11:51:52 +02:00
parent a7151dbc89
commit 1050ddea8a
5 changed files with 260 additions and 61 deletions

View File

@@ -33,6 +33,9 @@ KAFFINITY HL::Cpu::ActiveProcessors;
/* FrameBuffer information */
HL_FRAMEBUFFER_DATA HL::FrameBuffer::FrameBufferData;
/* Pointer to the RAM shadow buffer used for double-buffered rendering */
PVOID HL::FrameBuffer::ScreenShadowBuffer;
/* Scroll region information */
HL_SCROLL_REGION_DATA HL::FrameBuffer::ScrollRegionData;