framework/replay: disable AA accounting when comparing with no tolerance
[piglit.git] / tests / spec / glsl-1.50 / compiler / unnamed-interface-block-elem-conflicts-with-prev-block-elem.vert
blobc26c82d7fbe3a453a1f3ecddf544705e1edd9cd8
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.50
4 // check_link: true
5 // [end config]
6 //
7 // From section 4.3.7 (Interface Blocks) of the GLSL 1.50 spec:
8 //
9 //     If an instance name (instance-name) is not used, the names
10 //     declared inside the block are scoped at the global level and
11 //     accessed as if they were declared outside the block.
13 // Consequently, inside an interface block lacking an instance-name,
14 // it is illegal to use a name that was previously declared inside a
15 // different interface block lacking an instance-name (just as it
16 // would be illegal to redeclare the name outside an interface block).
18 #version 150
20 out block1 {
21     vec4 a;
24 out block2 {
25     vec4 a;
28 void main()