Initial commit

This commit is contained in:
2026-02-07 18:32:40 +02:00
commit 219734a813
134 changed files with 20257 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#include "Utils.h"
struct Framebuffer
{
uint32_t* pixels;
int32_t width;
int32_t height;
uint8_t bpp;
Rectangle area() const { return { 0, 0, width, height }; }
};
Framebuffer open_framebuffer();