msaa, mipmaps, frame times

This commit is contained in:
2024-07-13 21:15:08 +02:00
parent b9ec9f198f
commit 1c14a03aba
4 changed files with 16766 additions and 125 deletions

View File

@@ -2,6 +2,8 @@ LDFLAGS = -lglfw -lvulkan -ldl -lpthread -lm
CFLAGS = -g -pedantic -Wall -Wextra -Wshadow -Wunused-macros
RELEASE = -O3 -DNDEBUG
VulkanApplication: main.c
gcc $(CFLAGS) -o VulkanApplication main.c $(LDFLAGS)
@@ -10,5 +12,12 @@ VulkanApplication: main.c
run: VulkanApplication
./VulkanApplication
release:
gcc $(LDFLAGS) $(RELEASE) -o VulkanApplication main.c
./VulkanApplication
debug:
gcc $(CFLAGS) -o VulkanApplication main.c $(LDFLAGS) -fsanitize=address
clean:
rm -f VulkanApplication