yum-mirror/slang

Making it easier to work with shaders

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

Tim FoleyMerge pull request #46 from tfoleyNV/import-exported97f253189

master
195 B8 linesraw
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); }