feat: Added fps counter

This commit is contained in:
Theo Champion 2025-08-11 10:50:59 +02:00
parent a0967d5f93
commit 4564db6f2f
5 changed files with 1442 additions and 5 deletions

View file

@ -4,7 +4,7 @@ CC = cc
# https://github.com/google/sanitizers/wiki/AddressSanitizer
SANITIZERS = -fsanitize=address,undefined -fno-omit-frame-pointer
ifeq ($(CFLAGS),)
CFLAGS = -Wall -Wextra -Werror -g
CFLAGS = -Wall -Wextra -Werror -g -O3 -ffast-math
endif
IFLAGS = -I./mlx -I./libft