https://github.com/shader-slang/slang
Raw File
Tip revision: 0bf899a5f8110fbea97272bdda03b68b91745e51 authored by Yong He on 01 July 2022, 22:09:24 UTC
Language server: auto completion of `import` file and directories. (#2312)
Tip revision: 0bf899a
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