summaryrefslogtreecommitdiff
path: root/tests/shaders/glsl-preprocessor-comments.frag
blob: e8f538f776fdad5de330e9b76a79e5a13f585229 (plain)
1
2
3
4
5
6
7
8
9
10
uniform vec4 args1;

#define YEAH 1

void main()
{
#if YEAH  // oh yeah
	gl_FragColor = args1;
#endif
}