framework/replay: disable AA accounting when comparing with no tolerance
[piglit.git] / tests / glslparsertest / shaders / function9.frag
blob5202ef7c3cdebc41d61315c243b4f00350d7559a
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.10
4 //
5 // [end config]
7 void function(const in int i);  
9 void main()
11     int i;
12     function(i);  
15 // function definition has different parameter qualifiers than function declaration
16 void function(in int i)  
17 {  
18    i = 3;