https://github.com/shader-slang/slang
Raw File
Tip revision: a90c850735664e2928e4cc961442a126c6859b97 authored by Tim Foley on 26 January 2021, 21:32:03 UTC
Integrate reflection more deeply into gfx layer (#1677)
Tip revision: a90c850
import-subdir-search-path-repro.slang
//DISABLE_TEST:SIMPLE: -Itests/front-end/subdir -dump-repro import-subdir-search-path-repro.slang-repro
//DISABLE_TEST:SIMPLE_EX: -extract-repro import-subdir-search-path-repro.slang-repro
//DISABLE_TEST:SIMPLE: -load-repro import-subdir-search-path-repro.slang-repro

// Confirming import lookup via search paths work

__import import_subdir_a;

// Should realize it's the same thing
__import subdir.import_subdir_a;

float bar(float x) { return foo(x); }
back to top