https://github.com/shader-slang/slang
Raw File
Tip revision: 2700a89f8c80620f1d523563cc80ec0da39e9761 authored by jsmall-nvidia on 23 October 2018, 00:48:59 UTC
Fix problem with __import not working (#688)
Tip revision: 2700a89
import-subdir-search-path.slang
//TEST:SIMPLE: -Itests/front-end/subdir

// Confirming import lookup via search paths work

__import import_subdir_a;

float bar(float x) { return foo(x); }
back to top