qskinny/src/nodes/shaders/vulkan2qsb.sh
Uwe Rathmann 51a7e4e589 Using our own gradient shaders ( no dependencies from quickshapes
anymore ). shapes/Gradient has not yet been merged into QskGradient
and we still have some stupid conversions to QGradient in the way.
2022-10-13 19:39:57 +02:00

19 lines
448 B
Bash
Executable File

#! /bin/sh
function qsbcompile {
qsbfile=`echo $1 | sed 's/-vulkan//'`
qsb --glsl 100es,120,150 --hlsl 50 --msl 12 -b -o ${qsbfile}.qsb $1
}
qsbcompile boxshadow-vulkan.vert
qsbcompile boxshadow-vulkan.frag
qsbcompile gradientconic-vulkan.vert
qsbcompile gradientconic-vulkan.frag
qsbcompile gradientradial-vulkan.vert
qsbcompile gradientradial-vulkan.frag
qsbcompile gradientlinear-vulkan.vert
qsbcompile gradientlinear-vulkan.frag