summaryrefslogtreecommitdiff
path: root/src/renderer/Window.zig
AgeCommit message (Collapse)Author
2025-03-29moved rendering to a system.Lorenzo Torres
To ensure that the rendering system is being run in the main thread, I added the concept of "Sync systems", so that when a system group is created it's possible to specify whether it's possible to run it on a separate thread or not.
2025-03-29Added cursor input managementLorenzo Torres
2025-03-28fix Window.zigLorenzo Torres
2025-03-28Made ECS a separate module and implemented basic input handling.Lorenzo Torres
2025-03-28fix poll events for window moduleLorenzo Torres
2025-03-27Made Renderer a separate moduleLorenzo Torres