10 lines
144 B
Bash
10 lines
144 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
DIR="$(realpath $(dirname $0))"
|
||
|
cd "${DIR}/shaders"
|
||
|
|
||
|
# needs Vulkan SDK
|
||
|
glslc shader.vert -o vert.spv
|
||
|
glslc shader.frag -o frag.spv
|
||
|
|