https://github.com/shader-slang/slang
Raw File
Tip revision: 668078ac8be89e55c8e13ac429c4b0e63fb604dc authored by Tim Foley on 17 January 2019, 19:43:20 UTC
Fix diagnostic output for command-line slangc (#783)
Tip revision: 668078a
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