https://github.com/shader-slang/slang
Raw File
Tip revision: eb5c6b93543ca1423117045dbbfee0b6f653d392 authored by Yong He on 28 September 2022, 20:42:40 UTC
Make github CI build aarch64 binaries on release. (#2417)
Tip revision: eb5c6b9
import-subdir-search-path.slang
//TEST:SIMPLE: -Itests/front-end/subdir

// 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