major refactor

This commit is contained in:
2026-07-06 17:33:52 -07:00
parent 64dbdb670c
commit a3142a6b18
7 changed files with 119 additions and 465 deletions
+9
View File
@@ -28,4 +28,13 @@ namespace UwU {
uint16_t xr0;
uint16_t xr1;
};
struct Buffer {
Buffer(uint8_t* pixels, uint16_t stride, uint16_t height, uint16_t width);
Buffer();
uint8_t* pixels;
uint16_t stride;
uint16_t height;
uint16_t width;
};
}