blob: 95bfbb3a1a5efda92606524aa79e79451e23e346 [file] [log] [blame]
John Kessenichc555ddd2015-06-17 02:38:44 +00001#version 310 es
2#define X(Y) /*
3 */ Y + 2
4
5#define Y(Z) 2 * Z// asdf
6
7#define Z(Y) /*
8 */ \
9 2 /*
10 */ + 3 \
11 * Y
12
13void main() {
14 gl_Position = vec4(X(3) + Y(4) + Z(2));
15}