https://github.com/shader-slang/slang
Raw File
Tip revision: 28adf8917e53953dbfebd746410a427a55eed814 authored by Yong He on 09 September 2021, 18:39:04 UTC
`reinterpret` and 16-bit value packing. (#1933)
Tip revision: 28adf89
include.slang
//TEST:SIMPLE:
// #include support

int foo() { return 0; }

#include "include-a.slang.h"

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