yum-mirror/slang

Making it easier to work with shaders

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

Yong HeAdd transposition logic for constructor opcodes. (#2618)77cdbb210

master
154 B12 linesraw
1//TEST:LANG_SERVER:
2
3struct MyType {};
4
5void m()
6{
7//HOVER:8,9
8    MyType b;
9    int t = 2tdf;
10    float c = 3.0ug;
11    reinterpret<MyType, MyType>(b);
12}