Merge pull request #3031 from rg3igalia/sub-group-size-arb-flat-fix
[platform/upstream/glslang.git] / Test / terminate.vert
1 #version 400\r
2 \r
3 void foo() { terminateInvocation; } // ERROR: identifier undeclared\r
4 \r
5 #extension GL_EXT_terminate_invocation : enable\r
6 \r
7 void main()\r
8 {\r
9     terminateInvocation;  // ERROR: wrong stage\r
10 }\r