1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-20 11:47:45 +00:00
novus/renderer/shaders/compile_shaders.sh

9 lines
297 B
Bash
Raw Normal View History

#!/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 &&
2023-09-26 17:09:12 -04:00
glslc mesh.frag -o mesh.frag.spv &&
glslc imgui.vert -o imgui.vert.spv &&
glslc imgui.frag -o imgui.frag.spv