framework/replay: disable AA accounting when comparing with no tolerance
[piglit.git] / tests / spec / glsl-1.50 / compiler / layout-global-only.frag
blob55b7811f59048ae9848b595daf0876859e8a8c94
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.50
4 // check_link: true
5 // [end config]
6 //
7 // Section 4.3.8(Layout Qualifiers) of the GLSL 1.50 spec says:
8 // "Declarations of layouts can only be made at global scope"
10 #version 150
12 void main()
14         layout(pixel_center_integer) vec4 fc;
15         gl_FragColor = vec4(1.);