| 12345678910111213141516171819202122 |
- // Verify that we can successfully process an include
- #include "include/inc1.hlsli"
- int g;
- static int g_unused;
- #ifndef semantic
- #define semantic SV_Target
- #endif
- #ifdef DX12
- #define RS "CBV(b0)"
- [RootSignature ( RS )]
- #endif
- float4 main() : semantic
- {
- #ifdef check_warning
- int x = 3;
- x;
- #endif
- return f1(g);
- }
|