blob: e4347100a0e87bb5d39ffb7d4061e813a3c29f4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//TEST:SIMPLE(filecheck=CHECK): -target spirv -emit-spirv-directly -entry computeMain -stage compute
//TEST:SIMPLE(filecheck=CHECK_IGNORE_CAPS): -target spirv -emit-spirv-directly -entry computeMain -stage compute -ignore-capabilities
// CHECK_IGNORE_CAPS-NOT: error 36111
[require(spirv, hlsl)]
// CHECK: error 36111
// CHECK_IGNORE_CAPS-NOT: error 36111
void computeMain()
{
}
|