glslang/Test/460.vert

16 lines
208 B
GLSL
Raw Normal View History

#version 460 core
int i;
; // extraneous semicolon okay
float f;;;
void main()
{
2017-07-23 23:31:44 -06:00
bool b1;
b1 = anyInvocation(b1);
b1 = allInvocations(b1);
b1 = allInvocationsEqual(b1);
}
;
;