[feat] Layers mangaing

This commit is contained in:
2026-06-05 17:46:36 +08:00
Unverified
parent fd2ca8ad30
commit 1ba644168f
6 changed files with 483 additions and 28 deletions
+13
View File
@@ -0,0 +1,13 @@
#pragma once
#include <efi.h>
void gfx_fill_rect(EFI_GRAPHICS_OUTPUT_BLT_PIXEL* buf,
UINT32 buf_w, UINT32 buf_h,
UINT32 x, UINT32 y, UINT32 w, UINT32 h,
EFI_GRAPHICS_OUTPUT_BLT_PIXEL color);
void gfx_draw_rect(EFI_GRAPHICS_OUTPUT_BLT_PIXEL* buf,
UINT32 buf_w, UINT32 buf_h,
UINT32 x, UINT32 y, UINT32 w, UINT32 h,
EFI_GRAPHICS_OUTPUT_BLT_PIXEL color);