Add more structure constructor tests.
[piglit/hramrach.git] / tests / shaders / glsl-arb-fragment-coord-conventions-define.frag
blob645f77fab8cb24001ae1c7e9f72ff2cefaa2ef03
1 #extension GL_ARB_fragment_coord_conventions : warn
3 void main()
5 #ifdef GL_ARB_fragment_coord_conventions
6                 gl_FragColor = vec4(0.0, 1.0, 0.0, 0.0);
7 #else
8                 gl_FragColor = vec4(1.0, 0.0, 0.0, 0.0);
9 #endif