https://github.com/shader-slang/slang
Raw File
Tip revision: d4b8edf79ad6d139bc0de2f1fa9a34f00317f763 authored by Yong He on 13 October 2023, 20:49:02 UTC
Update a1-04-interop.md
Tip revision: d4b8edf
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