yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
5ca446888
master
1//DISABLE_TEST:SIMPLE: -Itests/front-end/subdir -dump-repro import-subdir-search-path-repro.slang-repro 2//DISABLE_TEST:SIMPLE_EX: -extract-repro import-subdir-search-path-repro.slang-repro 3//DISABLE_TEST:SIMPLE: -load-repro import-subdir-search-path-repro.slang-repro 4 5// Confirming import lookup via search paths work 6 7__import import_subdir_a; 8 9// Should realize it's the same thing 10__import subdir.import_subdir_a; 11 12float bar(float x) { return foo(x); }