yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
87c50cf16
master
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}