yum-mirror/slang

Making it easier to work with shaders

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

Yong HeSupport visibility control and default to `internal`. (#3380)11111e573

master
229 B10 linesraw
1//TEST:SIMPLE: -Itests/front-end/subdir
2
3// Confirming import lookup via search paths work
4
5__import import_subdir_a;
6
7// Should realize it's the same thing
8__import subdir.import_subdir_a;
9
10float bar(float x) { return foo(x); }