https://github.com/shader-slang/slang
Raw File
Tip revision: 53793612e3a2f1cadc4f7cbf703bcd94b7121414 authored by Yong He on 28 April 2023, 01:32:20 UTC
Embed stdlib documentation to AST. (#2851)
Tip revision: 5379361
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