https://github.com/shader-slang/slang
Raw File
Tip revision: 13ff0bd345990c0fdfb7b52ebd5339cddb04889e authored by Tim Foley on 03 March 2021, 19:45:39 UTC
Add GLSL/SPIR-V support got GetAttributeAtVertex (#1733)
Tip revision: 13ff0bd
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