feat(layout)!: move /gl and /vk into rendering directory

as I was adding the audio module I realized it looks really ugly that
the audio-related stuff will be in its own directory and the renderer
modules will be scattered in root directory it makes way more sense this
way

Signed-off-by: Lorenzo Torres <lorenzo@sagittarius-a.org>
This commit is contained in:
h3llll 2025-11-05 20:38:35 +02:00 committed by Lorenzo Torres
parent 5a4db88436
commit 1070d03815
14 changed files with 6187 additions and 8 deletions

View file

@ -12,16 +12,16 @@ SRC:=\
core/vector.c\
ifeq (${GRAPHICS_BACKEND},gl)
SRC += gl/gl.c\
gl/platform.c\
gl/renderer.c
SRC += rendering/gl/gl.c\
rendering/gl/platform.c\
rendering/gl/renderer.c
endif
ifeq (${GRAPHICS_BACKEND},vk)
SRC += vk/platform.c\
vk/renderer.c\
vk/instance.c\
vk/physical_device.c\
vk/device.c
SRC += rendering/vk/platform.c\
rendering/vk/renderer.c\
rendering/vk/instance.c\
rendering/vk/physical_device.c\
rendering/vk/device.c
endif
OBJ:=${SRC:.c=.o}