yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
97f253189
master
1//TEST:SIMPLE: 2 3// Confirming that we can use a re-exported function 4 5// `a` imports `b` (which defines `foo`) and re-exports it 6__import import_exported_a; 7 8float bar(float x) { return foo(x); }