blob: 3d664206397d0b2e7d8862240fce3e85e7fe4c3d (
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 36104
[require(spirv, hlsl)]
// CHECK: error 36111
// CHECK_IGNORE_CAPS-NOT: error 36111
void computeMain()
{
}
|