https://github.com/shader-slang/slang
Raw File
Tip revision: c4790309ec46ae2f4f7c49eb50699a950ee7a9a4 authored by Yong He on 20 February 2022, 22:37:41 UTC
gfx: defer downstream shader compilation until draw/dispatch. (#2139)
Tip revision: c479030
include.slang
//TEST:SIMPLE:
// #include support

int foo() { return 0; }

#include "include-a.slang.h"

int baz() { return bar(); }
back to top