yum-mirror/slang

Making it easier to work with shaders

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

Tim FoleyAvoid crash when bad argument given to [instance(...)] attribute (#464)87c50cf16

master
187 B11 linesraw
1//TEST:SIMPLE:
2
3// undefined identifier used in `[instance(...)]` attribute
4
5struct V { float4 u : U; };
6
7[instance(COUNT)]
8void myGS(triangle V input[3], TriangleStream<V> output)
9{
10	
11}