blob: d36a62adf0d30c98c753c05387d27f3e69c25215 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//TEST:SIMPLE(filecheck=CHECK): -target glsl -entry main -stage fragment -allow-glsl
//TEST:SIMPLE(filecheck=CHECK_IGNORE_CAPS): -target glsl -entry main -stage fragment -allow-glsl -ignore-capabilities
// CHECK_IGNORE_CAPS-NOT: error 36107
// CHECK: error 36107
float4 main()
{
memoryBarrierAtomicCounter();
return float4(1.0f);
}
|