yum-mirror/slang

Making it easier to work with shaders

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

Jay KwakFix typo SV_DispatchThreadIndex (#4962)e9f52a694

master
246 B10 linesraw
1//TEST(compute):SIMPLE(filecheck=CHECK):-dump-ir -stage compute -entry main
2
3// CHECK: global_hashed_string_literals("Hello \t\n\0x083 World")
4[numthreads(1, 1, 1)]
5void main(
6    uint tid   : SV_DispatchThreadID)
7{
8	"Hello \t\n\0x083 World";
9}
10