https://github.com/shader-slang/slang
Raw File
Tip revision: d8d8fefb9693e83bea215629f3a77f8a48d2f50f authored by Tim Foley on 11 July 2017, 22:10:24 UTC
Merge pull request #74 from tfoleyNV/resources-in-structs
Tip revision: d8d8fef
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