blob: 2b72aff5781457b95c817223fbd26c5d1dcc7a65 [file] [log] [blame]
John Stilesb0245492020-09-14 17:30:13 -04001
John Stilesdb42bf22020-09-15 16:09:11 -04002out vec4 sk_FragColor;
John Stilesecd7c222021-02-08 14:20:28 -05003vec4 main() {
John Stilesdb42bf22020-09-15 16:09:11 -04004 float b = 2.0;
John Stiles7a3f5502021-03-08 13:29:15 -05005 float c = 3.0;
John Stiles7a3f5502021-03-08 13:29:15 -05006 float d = c;
John Stilesb0245492020-09-14 17:30:13 -04007 b++;
8 d++;
John Stilesecd7c222021-02-08 14:20:28 -05009 return vec4(float(b == 2.0), float(b == 3.0), float(d == 5.0), float(d == 4.0));
John Stilesb0245492020-09-14 17:30:13 -040010}