wip video device

This commit is contained in:
2025-09-21 17:46:19 +02:00
parent 724eec9241
commit 2be15dc7c9
12 changed files with 3319 additions and 28 deletions
+5 -4
View File
@@ -13,10 +13,13 @@ build:
src/*.h src/*.c \
-Iinclude \
hashmap.c/hashmap.c \
-lm -lGL -lglfw \
-lm -lGL -lglfw -ldrm \
-Wall -Wextra \
-DGLFW_INCLUDE_NONE \
-o build/$(TARGET)
-DGLFW_EXPOSE_NATIVE_EGL \
-DGLFW_NATIVE_INCLUDE_NONE \
-o build/$(TARGET) \
-g
.PHONY: run
run: build
@@ -33,8 +36,6 @@ install: build
.PHONY: valgrind
valgrind: build
valgrind \
--leak-check=full \
--track-fds=all \
--show-realloc-size-zero=no \
--undef-value-errors=no \
./build/$(TARGET) $(TEST_ARGS)