linux shader building, complete side renaming, esc to quit

This commit is contained in:
steffen 2024-12-22 11:13:05 +01:00
parent c733c0519f
commit 57e862832a
5 changed files with 160 additions and 122 deletions
shaders

11
shaders/compile.sh Executable file
View file

@ -0,0 +1,11 @@
#!/bin/sh
glslc shaders/cube.vert -o shaders/vert_cube.spv
glslc shaders/cube.frag -o shaders/frag_cube.spv
glslc shaders/cube.geom -o shaders/geo_cube.spv
glslc shaders/cuboid.vert -o shaders/vert_cuboid.spv
glslc shaders/cuboid.frag -o shaders/frag_cuboid.spv
glslc shaders/cuboid.geom -o shaders/geo_cuboid.spv
glslc shaders/rt_quad.vert -o shaders/vert_rt_quad.spv
glslc shaders/rt_quad.frag -o shaders/frag_rt_quad.spv