blob: 99507f7950763e3c9191458fca9759e769edda19 (
plain)
1
2
3
4
5
6
7
8
9
|
// direct-spirv-emit.slang
//TEST:SIMPLE:-target spirv -entry computeMain -stage compute -emit-spirv-directly
// Test ability to directly output SPIR-V
[numthreads(4,1,1)]
void computeMain()
{}
|