integer math

This commit is contained in:
Jorijn van der Graaf 2025-11-23 04:04:53 +01:00
commit 5ff43e240c
27 changed files with 922 additions and 1011 deletions

View file

@ -11,9 +11,7 @@ A empty window with the title "HelloWindow" shows onscreen.
## Highlighted Code Snippet
```cpp
Window<true, true, false, false> window;
window.framebuffer.Create(1280, 720);
window.title.Set("HelloWindow");
WindowWayland window(1280, 720, "Hello Window!");
window.StartSync();
```