https://github.com/shader-slang/slang
Raw File
Tip revision: 6f31eae79d5b4297d0099c5779a9806a786cf9f8 authored by Yong He on 01 March 2023, 21:19:33 UTC
Implement derivatives for HLSL intrinsics. (#2684)
Tip revision: 6f31eae
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