https://github.com/shader-slang/slang
Raw File
Tip revision: a61f089fbc4b944d058e6417d8a0d22d57ca5c92 authored by Yong He on 28 March 2023, 22:19:03 UTC
Add slangpy doc, fix cuda prelude. (#2748)
Tip revision: a61f089
import-exported-b.slang
//TEST_IGNORE_FILE:

// This file defines the code that will be (transitively) imported into `import-exported.slang`

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