9 lines
230 B
Bash
Executable file
9 lines
230 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
SLANGC="/opt/shader-slang-bin/bin/slangc"
|
|
|
|
$SLANGC egui.slang -profile glsl_450 -target spirv -o egui_vert.spv -entry vertex
|
|
$SLANGC egui.slang -profile glsl_450 -target spirv -o egui_frag.spv -entry fragment
|