1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-22 12:07:45 +00:00
novus/renderer/shaders/compile_shaders.sh
Joshua Goins 0d303f0e6e Add dummy shader for testing purposes
This is used to make sure the vertex stage successfully completed, thats
it.
2024-04-21 11:50:39 -04:00

10 lines
No EOL
335 B
Bash
Executable file

#!/bin/sh
# SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
# SPDX-License-Identifier: CC0-1.0
glslc mesh.vert -o mesh.vert.spv &&
glslc skinned.vert -o skinned.vert.spv &&
glslc mesh.frag -o mesh.frag.spv &&
glslc imgui.vert -o imgui.vert.spv &&
glslc imgui.frag -o imgui.frag.spv &&
glslc dummy.frag -o dummy.frag.spv