speed up gfx, colored lighting is out for now

This commit is contained in:
asrael 2026-02-05 02:42:58 -06:00
parent 3c3e961995
commit 01e6059dd1
17 changed files with 1055 additions and 250 deletions

View file

@ -340,6 +340,7 @@ pxl8_result pxl8_update(pxl8* sys) {
if (game->fps_accumulator >= 1.0f) {
game->fps = (f32)game->fps_frame_count / game->fps_accumulator;
pxl8_info("FPS: %.1f", game->fps);
game->fps_accumulator = 0.0f;
game->fps_frame_count = 0;
}