https://github.com/shader-slang/slang
Raw File
Tip revision: a95fe92dafbd2a2e718bb4aac090a7156a46e79b authored by Yong He on 20 September 2022, 22:44:16 UTC
Use `printf` in tests. (#2406)
Tip revision: a95fe92
import-exported.slang
//TEST:SIMPLE:

// Confirming that we can use a re-exported function

// `a` imports `b` (which defines `foo`) and re-exports it
__import import_exported_a;

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