yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

Tim FoleyIR/Vulkan fixes (#412)1b93da040

master
361 B17 linesraw
1//TEST_DISABLED(smoke):REFLECTION:-profile ps_4_0 -target glsl
2
3// Disabled because we don't support GLSL any more.
4// (kept around so we can replace with an equivalent
5// test that uses HLSL input and tests GLSL layout rules)
6
7// Confirm fix for GitHub issue #55
8
9layout(set = 0, binding = 0)
10uniform PerFrameCB
11{
12	vec2 offset;
13	vec2 scale;
14};
15
16void main()
17{}