https://github.com/shader-slang/slang
Raw File
Tip revision: 0a6926003fd2300858e3089fe82f421543852395 authored by Yong He on 28 March 2023, 06:00:42 UTC
Translate all composed types into tuple types in pyBind. (#2744)
Tip revision: 0a69260
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