use staging buffer for increased performance, with separated command pool for memory transfers

This commit is contained in:
2024-07-08 20:41:12 +02:00
parent 83ff89daf8
commit bf21eae3f1
3 changed files with 119 additions and 45 deletions

View File

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