[feat] Desktop render color

This commit is contained in:
2026-05-31 19:58:14 +08:00
Unverified
parent 746786a059
commit 175eba1889
27 changed files with 66 additions and 39 deletions
+9
View File
@@ -0,0 +1,9 @@
#include <graphics/draw.h>
void prepare(UINT32 width, UINT32 height, COLOR_RGB color) {
for (UINT32 i = 0; i < height; i++) {
for (UINT32 j = 0; j < width; j++) {
draw_pixel(i, j, color);
}
}
}