Set up Vertex Buffer

This commit is contained in:
2024-10-09 06:14:01 -05:00
parent 0fefb85d0a
commit 7e625a3db5
10 changed files with 146 additions and 27 deletions

View File

@@ -6,7 +6,7 @@ SRC = $(shell find . -name "*.cpp")
SHDRSRC = $(shell find . -name "*.frag" -o -name "*vert")
SPV = $(SHDRSRC:%.vert=%.spv) $(SHDRSRC:%.frag=%.spv)
OBJ = $(SRC:%.cpp=%.o)
MAKEFLAGS += -j16
BIN=build/agnosiaengine
.PHONY: all