inital vertex buffer

This commit is contained in:
2024-07-08 01:37:56 +02:00
parent e6cef74c8b
commit 83ff89daf8
4 changed files with 252 additions and 95 deletions

View File

@@ -3,7 +3,7 @@ LDFLAGS = -lglfw -lvulkan -ldl -lpthread
CFLAGS = -g -pedantic -Wall -Wextra -Wshadow -Wunused-macros
VulkanApplication: main.c
gcc $(CFLAGS) -o VulkanApplication main.c $(LDFLAGS)
tcc $(CFLAGS) -o VulkanApplication main.c $(LDFLAGS)
.PHONY: run clean